We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff6cc32 commit 5d81a6bCopy full SHA for 5d81a6b
frontend/src/tauri/helpers.ts
@@ -29,7 +29,7 @@ export const usePlatform = (): Platform | undefined => {
29
};
30
31
export const setWindowMinSize = (width: number, height: number): void => {
32
- appWindow.setMinSize(new LogicalSize(width, height));
+ if (!appWindow.isFullscreen()) appWindow.setMinSize(new LogicalSize(width, height));
33
34
35
export const setWindowTitle = (title: string): void => {
0 commit comments