We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f0ba7d commit 36c3fc5Copy full SHA for 36c3fc5
1 file changed
src/lib/components/chat/ChatControls.svelte
@@ -95,10 +95,12 @@
95
showControls.set(true);
96
}
97
98
- // Auto-open Files tab when a terminal is selected
+ // Auto-open Files tab when a terminal is selected (suppress panel open when full-screen)
99
$: if ($selectedTerminalId) {
100
activeTab = 'files';
101
- showControls.set(true);
+ if (largeScreen) {
102
+ showControls.set(true);
103
+ }
104
105
106
// Attach a terminal file to the chat input
0 commit comments