This commit is contained in:
Timothy J. Baek 2024-09-21 04:36:18 +02:00
parent cb81dfe4ba
commit d3ef9d980b
2 changed files with 11 additions and 2 deletions

View File

@ -289,7 +289,11 @@
if (controlPane && !$mobile) { if (controlPane && !$mobile) {
try { try {
if (value) { if (value) {
controlPane.resize(parseInt(localStorage.getItem('chat-controls-size') || '35')); controlPane.resize(
parseInt(localStorage.getItem('chat-controls-size') || '35')
? parseInt(localStorage.getItem('chat-controls-size') || '35')
: 35
);
} else { } else {
controlPane.resize(0); controlPane.resize(0);
} }

View File

@ -40,6 +40,7 @@
largeScreen = true; largeScreen = true;
} else { } else {
largeScreen = false; largeScreen = false;
pane = null;
} }
}; };
@ -121,7 +122,11 @@
</PaneResizer> </PaneResizer>
<Pane <Pane
bind:pane bind:pane
defaultSize={$showControls ? parseInt(localStorage.getItem('chat-controls-size') || '35') : 0} defaultSize={$showControls
? parseInt(localStorage.getItem('chat-controls-size') || '35')
? parseInt(localStorage.getItem('chat-controls-size') || '35')
: 35
: 0}
onResize={(size) => { onResize={(size) => {
if (size === 0) { if (size === 0) {
showControls.set(false); showControls.set(false);