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

2
src/options_imp.cpp

@ -446,7 +446,7 @@ void options_imp::loadOptions(){ @@ -446,7 +446,7 @@ void options_imp::loadOptions(){
checkSpeedInTitle->setChecked(settings.value(QString::fromUtf8("SpeedInTitleBar"), false).toBool());
spinRefreshInterval->setValue(settings.value(QString::fromUtf8("RefreshInterval"), 1500).toInt());
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()) {
disableSystrayOptions();
} else {

Loading…
Cancel
Save