multiple fixes to profile saving and windows specific UI bugs

This commit is contained in:
Boof2015
2026-03-29 16:38:14 -04:00
parent 87f1516b4e
commit 436c45fd3a
16 changed files with 1289 additions and 167 deletions
+12
View File
@@ -0,0 +1,12 @@
export type ResizeDirection = 'n' | 's' | 'e' | 'w' | 'ne' | 'nw' | 'se' | 'sw'
export const RESIZE_DIRECTIONS: ResizeDirection[] = [
'n',
's',
'e',
'w',
'ne',
'nw',
'se',
'sw',
]