distabled the option "minimize on minimize" for windows as it doesn't work properly...
authorAlexander von Renteln <phon@quassel-irc.org>
Thu, 21 Feb 2008 15:10:30 +0000 (15:10 +0000)
committerAlexander von Renteln <phon@quassel-irc.org>
Thu, 21 Feb 2008 15:10:30 +0000 (15:10 +0000)
src/qtui/settingspages/generalsettingspage.cpp

index aa793d7..e18e436 100644 (file)
@@ -33,6 +33,10 @@ GeneralSettingsPage::GeneralSettingsPage(QWidget *parent)
   ui.macOnly->hide();
 #endif
 
+#ifdef Q_WS_WIN
+  ui.minimizeOnMinimize->hide();
+#endif
+
   connect(ui.useSystemTrayIcon, SIGNAL(clicked(bool)), this, SLOT(widgetHasChanged()));
   connect(ui.showSystemTrayIcon, SIGNAL(clicked(bool)), this, SLOT(widgetHasChanged()));
   connect(ui.minimizeOnMinimize, SIGNAL(clicked(bool)), this, SLOT(widgetHasChanged()));