Skip to content

Commit

Permalink
Qt UI: use sidebar by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
tehnick committed Jul 9, 2013
1 parent 948fbfb commit 2fb88cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eiskaltdcpp-qt/src/WulforSettings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ void WulforSettings::load(){
settings.setValue(WB_MAINWINDOW_HIDE, static_cast<int>(false));
settings.setValue(WB_MAINWINDOW_REMEMBER, static_cast<int>(true));
settings.setValue(WB_MAINWINDOW_USE_M_TABBAR, static_cast<int>(true));
settings.setValue(WB_MAINWINDOW_USE_SIDEBAR, static_cast<int>(false));
settings.setValue(WB_MAINWINDOW_USE_SIDEBAR, static_cast<int>(true));
settings.setValue(WB_SEARCHFILTER_NOFREE, static_cast<int>(false));
settings.setValue(WB_SEARCH_DONTHIDEPANEL, static_cast<int>(false));
settings.setValue(WB_ANTISPAM_ENABLED, static_cast<int>(false));
Expand Down Expand Up @@ -302,7 +302,7 @@ void WulforSettings::loadOldConfig(){
intmap.insert(WB_MAINWINDOW_HIDE, static_cast<int>(false));
intmap.insert(WB_MAINWINDOW_REMEMBER, static_cast<int>(true));
intmap.insert(WB_MAINWINDOW_USE_M_TABBAR, static_cast<int>(true));
intmap.insert(WB_MAINWINDOW_USE_SIDEBAR, static_cast<int>(false));
intmap.insert(WB_MAINWINDOW_USE_SIDEBAR, static_cast<int>(true));
intmap.insert(WB_SEARCHFILTER_NOFREE, static_cast<int>(false));
intmap.insert(WB_SEARCH_DONTHIDEPANEL, static_cast<int>(false));
intmap.insert(WB_ANTISPAM_ENABLED, static_cast<int>(false));
Expand Down

0 comments on commit 2fb88cb

Please sign in to comment.