[nostalgia/studio] Disable QDark theme on Mac

This commit is contained in:
Gary Talent 2021-03-28 00:08:15 -05:00
parent f22f7507a9
commit a474dc56c0

View File

@ -25,7 +25,9 @@ int main(int argc, char **args) {
QApplication app(argc, args);
// load theme
qdark::load(&app);
if constexpr(ox::defines::OS != ox::defines::OS::Darwin) {
qdark::load(&app);
}
try {
MainWindow w(argProfilePath);