Browse Source

- Display top toolBar as a default

adaptive-webui-19844
Christophe Dumez 16 years ago
parent
commit
8440e9982f
  1. 3
      src/options.ui
  2. 2
      src/options_imp.cpp

3
src/options.ui

@ -214,6 +214,9 @@
<property name="text" > <property name="text" >
<string>Display top toolbar</string> <string>Display top toolbar</string>
</property> </property>
<property name="checked" >
<bool>true</bool>
</property>
</widget> </widget>
</item> </item>
<item> <item>

2
src/options_imp.cpp

@ -446,7 +446,7 @@ void options_imp::loadOptions(){
checkSpeedInTitle->setChecked(settings.value(QString::fromUtf8("SpeedInTitleBar"), false).toBool()); checkSpeedInTitle->setChecked(settings.value(QString::fromUtf8("SpeedInTitleBar"), false).toBool());
spinRefreshInterval->setValue(settings.value(QString::fromUtf8("RefreshInterval"), 1500).toInt()); spinRefreshInterval->setValue(settings.value(QString::fromUtf8("RefreshInterval"), 1500).toInt());
checkNoSystray->setChecked(!settings.value(QString::fromUtf8("SystrayEnabled"), true).toBool()); checkNoSystray->setChecked(!settings.value(QString::fromUtf8("SystrayEnabled"), true).toBool());
checkDisplayToolbar->setChecked(settings.value(QString::fromUtf8("ToolbarDisplayed"), false).toBool()); checkDisplayToolbar->setChecked(settings.value(QString::fromUtf8("ToolbarDisplayed"), true).toBool());
if(!systrayIntegration()) { if(!systrayIntegration()) {
disableSystrayOptions(); disableSystrayOptions();
} else { } else {

Loading…
Cancel
Save