Skip to content

Commit

Permalink
DomkitViewer: fix resizable left panels
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoVgr committed Dec 18, 2024
1 parent f692962 commit 1ef9736
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hide/view/Domkit.hx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class Domkit extends FileView {
panelRight.width(totalWidth - panelLeft.element.width());
};

var panelTopLeft = new hide.comp.ResizablePanel(hide.comp.ResizablePanel.LayoutDirection.Vertical, element.find('.top'), After);
var panelTopLeft = new hide.comp.ResizablePanel(hide.comp.ResizablePanel.LayoutDirection.Vertical, panelLeft.element.find('.top'), After);
var panelBotLeft = element.find('.bot');
panelTopLeft.onBeforeResize = () -> {
panelBotLeft.height(0);
Expand Down

0 comments on commit 1ef9736

Please sign in to comment.