Skip to content

Commit 585f09c

Browse files
authored
fix: Fix assignment of macOS style preference
1 parent b235c39 commit 585f09c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tauon/t_modules/t_main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40149,7 +40149,7 @@ def load_prefs(bag: Bag) -> None:
4014940149

4015040150
prefs.theme_name = cf.sync_add("string", "theme-name", prefs.theme_name)
4015140151
prefs.transparent_mode = cf.sync_add("int", "transparent-style", prefs.transparent_mode, "0=opaque(default), 1=accents")
40152-
macstyle = cf.sync_add("bool", "mac-style", prefs.macstyle, "Use macOS style window buttons")
40152+
prefs.macstyle = cf.sync_add("bool", "mac-style", prefs.macstyle, "Use macOS style window buttons")
4015340153
prefs.zoom_art = cf.sync_add("bool", "allow-art-zoom", prefs.zoom_art)
4015440154
prefs.gallery_row_scroll = cf.sync_add("bool", "scroll-gallery-by-row", True)
4015540155
prefs.gallery_scroll_wheel_px = cf.sync_add(

0 commit comments

Comments
 (0)