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

This commit is contained in:
Elian Doran 2025-03-15 02:08:46 +02:00
parent 6acb490df4
commit 6c1f631ddb
No known key found for this signature in database

View File

@ -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]))
});
}