gtk: fix forcing the window theme to light or dark

Fixes #7038
This commit is contained in:
Jeffrey C. Ollie
2025-04-08 18:33:12 -05:00
parent 17ba0252e8
commit cb1b447e8c

View File

@ -314,8 +314,8 @@ pub fn init(core_app: *CoreApp, opts: Options) !App {
.prefer_dark; .prefer_dark;
}, },
.system => .prefer_light, .system => .prefer_light,
.dark => .prefer_dark, .dark => .force_dark,
.light => .force_dark, .light => .force_light,
}, },
); );