diff options
-rw-r--r-- | qt-gui.cpp | 1 | ||||
-rw-r--r-- | qt-ui/maintab.cpp | 12 |
2 files changed, 5 insertions, 8 deletions
diff --git a/qt-gui.cpp b/qt-gui.cpp index 59fa1985e..cb06bf8d5 100644 --- a/qt-gui.cpp +++ b/qt-gui.cpp @@ -95,7 +95,6 @@ void init_ui(int *argcp, char ***argvp) // the Gtk theme makes things unbearably ugly // so switch to Oxygen in this case - qDebug() << application->style()->objectName(); if (application->style()->objectName() == "gtk+") application->setStyle("Oxygen"); diff --git a/qt-ui/maintab.cpp b/qt-ui/maintab.cpp index 18e9b743a..43529ec3c 100644 --- a/qt-ui/maintab.cpp +++ b/qt-ui/maintab.cpp @@ -39,14 +39,12 @@ MainTab::MainTab(QWidget *parent) : QTabWidget(parent), ui->equipmentButtonBox->hide(); ui->diveNotesMessage->setCloseButtonVisible(false); ui->diveEquipmentMessage->setCloseButtonVisible(false); -#ifdef __APPLE__ - setDocumentMode(false); -#else - if (qApp->style()->objectName() == "gtk+") - setDocumentMode(false); - else + + if (qApp->style()->objectName() == "oxygen") setDocumentMode(true); -#endif + else + setDocumentMode(false); + // we start out with the fields read-only; once things are // filled from a dive, they are made writeable setEnabled(false); |