feat: persist and restore window size and position (#74)

Finished up saving and restoring of window position and size

Signed-off-by: Jespercal <chap600@hotmail.com>
This commit is contained in:
Jespercal
2026-02-13 06:16:53 +01:00
committed by GitHub
parent a162219668
commit 3bf697d1a9
3 changed files with 36 additions and 12 deletions
+4
View File
@@ -6,6 +6,10 @@ declare type DesktopConfig = {
hardwareAcceleration: boolean;
discordRpc: boolean;
windowState: {
x: number;
y: number;
width: number;
height: number;
isMaximised: boolean;
};
};