Archived
1
Fork 0

Disable editor style

This was never completed, and the theme is completely unusable
in it's current state
This commit is contained in:
Joshua Goins 2022-02-28 22:31:20 -05:00
parent 3ed62afe33
commit 09c560f26d
3 changed files with 3 additions and 3 deletions

View file

@ -11,7 +11,7 @@
int main(int argc, char* argv[]) { int main(int argc, char* argv[]) {
QApplication app(argc, argv); QApplication app(argc, argv);
app.setStyle(new EditorStyle()); //app.setStyle(new EditorStyle());
GraphicsConfig config; GraphicsConfig config;
config.shadowResolution = 256; config.shadowResolution = 256;

View file

@ -12,7 +12,7 @@
int main(int argc, char* argv[]) { int main(int argc, char* argv[]) {
QApplication app(argc, argv); QApplication app(argc, argv);
app.setStyle(new EditorStyle()); //app.setStyle(new EditorStyle());
GraphicsConfig config; GraphicsConfig config;
config.shadowResolution = 256; config.shadowResolution = 256;

View file

@ -5,7 +5,7 @@
int main(int argc, char* argv[]) { int main(int argc, char* argv[]) {
QApplication app(argc, argv); QApplication app(argc, argv);
app.setStyle(new EditorStyle()); //app.setStyle(new EditorStyle());
MainWindow window; MainWindow window;
window.show(); window.show();