Skip to content

Commit 12f4c2c

Browse files
committed
Fix the issue with Properties window not working in Explore
1 parent 1b56bdc commit 12f4c2c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/gui/src/UI/UIWindow.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2463,7 +2463,11 @@ async function UIWindow(options) {
24632463
let top = window.mouseY;
24642464
top = top > (window.innerHeight - (window_height + window.taskbar_height + window.toolbar_height))? (window.innerHeight - (window_height + window.taskbar_height + window.toolbar_height)) : top;
24652465

2466-
UIWindowItemProperties(options.title, options.path, options.uid, left, top, window_width, window_height);
2466+
UIWindowItemProperties(
2467+
options.title,
2468+
$(el_window).attr('data-path'),
2469+
$(el_window).attr('data-uid'),
2470+
left, top, window_width, window_height);
24672471
}
24682472
})
24692473
}

0 commit comments

Comments
 (0)