We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a70c4c commit 5b8739aCopy full SHA for 5b8739a
1 file changed
src/gui/gtk.c
@@ -3533,7 +3533,15 @@ void dt_gui_load_theme(const char *theme)
3533
_add_theme_import(&themecss, datadir, "themes", "condensed.css");
3534
}
3535
3536
- // we could add OS specific css here if needed
+ // load any OS specific themes tweak file to fix some platform specific issues
3537
+
3538
+#ifdef __APPLE__
3539
+ _add_theme_import(&themecss, datadir, "themes", "macos.css");
3540
+#elif defined(_WIN32)
3541
+ _add_theme_import(&themecss, datadir, "themes", "windows.css");
3542
+#else
3543
+ _add_theme_import(&themecss, datadir, "themes", "linux.css");
3544
+#endif
3545
3546
// and finally user.css
3547
0 commit comments