diff options
author | bobzel <zzzman@gmail.com> | 2023-05-16 14:50:29 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-05-16 14:50:29 -0400 |
commit | 46cf6c823ca8ab628cd8c5bd7fdfe8945344a014 (patch) | |
tree | 1e49ff8b3c29a3e31ad96ec39dd337cb58136426 /src/client/goldenLayout.js | |
parent | df7257d1b39f51a7e00a495f0d4a2366f0e21f7d (diff) |
fixed bugs with goldenlayout dragging and undoing. fixed searching for filter values in sidebars. Stopped creating empty list for collections when datafield() is accessed because it messes up undo of a collection. fixed tab title editing. from marquee. Added UndoStack UI and additional naming support in code.
Diffstat (limited to 'src/client/goldenLayout.js')
-rw-r--r-- | src/client/goldenLayout.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/goldenLayout.js b/src/client/goldenLayout.js index 9cb20d834..843b8bb5f 100644 --- a/src/client/goldenLayout.js +++ b/src/client/goldenLayout.js @@ -4740,7 +4740,7 @@ newstack._$init(); newstack.addChild(this.contentItems[0]); } - correctRowOrCol.addChild(newstack, insertBefore ? 0 : undefined, true); + correctRowOrCol.addChild(newstack, !insertBefore ? 0 : undefined, true); newstack.config[dimension] = 50; contentItem.config[dimension] = 50; correctRowOrCol.callDownwards('setSize'); |