From ac7122f0ff7b0e88a01473d4ba49fe41263147d5 Mon Sep 17 00:00:00 2001 From: Gu Date: Sat, 6 Jun 2026 18:14:47 +0800 Subject: [PATCH] feat(desktop): allow wider side panels Increase the draggable width limits for the desktop session sidebar and file browser panel while preserving existing minimum and default widths. --- apps/desktop/src/store/layout.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/desktop/src/store/layout.ts b/apps/desktop/src/store/layout.ts index c8f5386b6e7c..86062762ffdc 100644 --- a/apps/desktop/src/store/layout.ts +++ b/apps/desktop/src/store/layout.ts @@ -12,10 +12,10 @@ import { import { $paneStates, ensurePaneRegistered, setPaneOpen, setPaneWidthOverride, togglePane } from './panes' export const SIDEBAR_DEFAULT_WIDTH = 237 -export const SIDEBAR_MAX_WIDTH = 360 +export const SIDEBAR_MAX_WIDTH = 520 export const FILE_BROWSER_DEFAULT_WIDTH = '17rem' export const FILE_BROWSER_MIN_WIDTH = '14rem' -export const FILE_BROWSER_MAX_WIDTH = '20rem' +export const FILE_BROWSER_MAX_WIDTH = '80rem' export const SIDEBAR_SESSIONS_PAGE_SIZE = 50