Disable High-Res printing checkbox in preferences for mac (it's permanently forced on)

This commit is contained in:
Mark Watkins 2011-12-12 12:58:51 +10:00
parent b5ba3009af
commit bb66402c21

View File

@ -195,7 +195,14 @@ PreferencesDialog::PreferencesDialog(QWidget *parent,Profile * _profile) :
ui->skipEmptyDays->setChecked(general["SkipEmptyDays"].value().toBool());
ui->enableMultithreading->setChecked(general["EnableMultithreading"].value().toBool());
ui->cacheSessionData->setChecked(general["MemoryHog"].value().toBool());
#ifdef Q_WS_MAC
general["HighResPrinting"].setValue(true);
ui->highResolutionPrinting->setChecked(true);
ui->highResolutionPrinting->setEnabled(false);
#else
ui->highResolutionPrinting->setChecked(general["HighResPrinting"].value().toBool());
#endif
ui->graphHeight->setValue(general["GraphHeight"].value().toInt());
if (!PREF.Exists("Updates_AutoCheck")) PREF["Updates_AutoCheck"]=true;