Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/vs/sessions/browser/parts/auxiliaryBarPart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export class AuxiliaryBarPart extends AbstractPaneCompositePart {
return undefined;
}

return Math.max(width, 380);
return Math.max(width, 340);
Comment thread
lszomoru marked this conversation as resolved.
}

readonly priority = LayoutPriority.Low;
Expand Down
4 changes: 2 additions & 2 deletions src/vs/sessions/browser/workbench.ts
Original file line number Diff line number Diff line change
Expand Up @@ -892,8 +892,8 @@ export class Workbench extends Disposable implements IAgentWorkbenchLayoutServic

// Default sizes
const sideBarSize = 300;
const editorSize = 650;
const auxiliaryBarSize = 380;
const editorSize = 600;
const auxiliaryBarSize = 340;
Comment thread
lszomoru marked this conversation as resolved.
const panelSize = 300;
const titleBarHeight = this.titleBarPartView?.minimumHeight ?? 30;

Expand Down
Loading