Changeset 998 for Vago/trunk/Vago/preferences.cpp
- Timestamp:
- Apr 25, 2014, 11:05:54 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Vago/trunk/Vago/preferences.cpp
r897 r998 18 18 ui->cbSeparate->setChecked(this->vagoSettings->value("SeparateInWorkspace").toBool()); 19 19 ui->cbVagoExit->setChecked(this->vagoSettings->value("ConfirmExit").toBool()); 20 21 #ifdef Q_OS_WIN 22 ui->cbClearButtonYes->hide(); // don't display this mac os only option in windows 23 #endif 20 24 21 25 } … … 61 65 this->vagoSettings->setValue("SeparateInWorkspace",ui->cbSeparate->isChecked()); 62 66 this->vagoSettings->setValue("ConfirmExit",ui->cbVagoExit->isChecked()); 67 #ifdef Q_OS_MAC 68 this->vagoSettings->setValue("UseYesButtonClear",ui->cbClearButtonYes->isChecked()); 69 #endif 70 63 71 64 72 Util::showPopUp("You need to restart the application to all changes take effect.");
Note:
See TracChangeset
for help on using the changeset viewer.