fix(right_pane): buttons disappearing (force min width, closes #1419).

pull/1432/head
Elian Doran 2025-03-15 02:08:46 +07:00
parent 6acb490df4
commit 6c1f631ddb
No known key found for this signature in database
1 changed files with 1 additions and 0 deletions

@ -55,6 +55,7 @@ function setupRightPaneResizer() {
rightInstance = Split(["#center-pane", "#right-pane"], {
sizes: [100 - rightPaneWidth, rightPaneWidth],
gutterSize: 5,
minSize: [ 300, 180 ],
onDragEnd: (sizes) => options.save("rightPaneWidth", Math.round(sizes[1]))
});
}