From 09c560f26db39a3304f10ab56bc72dcc1f2d570f Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Mon, 28 Feb 2022 22:31:20 -0500 Subject: [PATCH] Disable editor style This was never completed, and the theme is completely unusable in it's current state --- tools/leveleditor/src/main.cpp | 2 +- tools/materialeditor/src/main.cpp | 2 +- tools/sdklauncher/src/main.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/leveleditor/src/main.cpp b/tools/leveleditor/src/main.cpp index 63be598..ccd77e1 100755 --- a/tools/leveleditor/src/main.cpp +++ b/tools/leveleditor/src/main.cpp @@ -11,7 +11,7 @@ int main(int argc, char* argv[]) { QApplication app(argc, argv); - app.setStyle(new EditorStyle()); + //app.setStyle(new EditorStyle()); GraphicsConfig config; config.shadowResolution = 256; diff --git a/tools/materialeditor/src/main.cpp b/tools/materialeditor/src/main.cpp index f2648a1..67c9d92 100755 --- a/tools/materialeditor/src/main.cpp +++ b/tools/materialeditor/src/main.cpp @@ -12,7 +12,7 @@ int main(int argc, char* argv[]) { QApplication app(argc, argv); - app.setStyle(new EditorStyle()); + //app.setStyle(new EditorStyle()); GraphicsConfig config; config.shadowResolution = 256; diff --git a/tools/sdklauncher/src/main.cpp b/tools/sdklauncher/src/main.cpp index de9345c..53964fa 100755 --- a/tools/sdklauncher/src/main.cpp +++ b/tools/sdklauncher/src/main.cpp @@ -5,7 +5,7 @@ int main(int argc, char* argv[]) { QApplication app(argc, argv); - app.setStyle(new EditorStyle()); + //app.setStyle(new EditorStyle()); MainWindow window; window.show();