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/app/features/settings/desktop/Desktop.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ describe('Desktop', () => {
'Show a system tray icon while Sable is running. Disable this if you want Sable to stay available without a tray icon.'
)
).toBeInTheDocument();
expect(container.getElementsByClassName(SequenceCardStyle)).toHaveLength(3);
expect(container.getElementsByClassName(SequenceCardStyle)).toHaveLength(4);
});

it('updates the custom title bar setting from the Window switch', () => {
Expand Down
7 changes: 7 additions & 0 deletions src/app/features/settings/desktop/Desktop.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,13 @@ export function Desktop({ requestBack, requestClose }: DesktopProps) {
/>
}
/>
</SequenceCard>
<SequenceCard
className={SequenceCardStyle}
variant="SurfaceVariant"
direction="Column"
gap="400"
>
<SettingTile
title="Close button keeps Sable running"
focusId="close-to-background-on-close"
Expand Down
Loading