diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-07-08 04:49:02 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-07-08 04:49:02 +0000 |
commit | 1c9ab00c8340ca93140ba0e508370436d4ec0bb8 (patch) | |
tree | 86de13da38bba463bc039a8ff718a5b32ce009e9 /plugins | |
parent | 5dbbf5cdb80ad060482727b884f2220efdc74746 (diff) |
little easier for modern with big number of frames
git-svn-id: http://svn.miranda-ng.org/main/trunk@5263 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/TopToolBar/src/toolbar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/TopToolBar/src/toolbar.cpp b/plugins/TopToolBar/src/toolbar.cpp index 86b4c469be..e2549c5b2f 100644 --- a/plugins/TopToolBar/src/toolbar.cpp +++ b/plugins/TopToolBar/src/toolbar.cpp @@ -661,7 +661,7 @@ int LoadToolbarModule() g_ctrl->nLastHeight = db_get_dw(0, TTB_OPTDIR, "LastHeight", DEFBUTTHEIGHT);
g_ctrl->bFlatButtons = db_get_b(0, TTB_OPTDIR, "UseFlatButton", true);
- g_ctrl->bSingleLine = db_get_b(0, TTB_OPTDIR, "SingleLine", false);
+ g_ctrl->bSingleLine = db_get_b(0, TTB_OPTDIR, "SingleLine", true);
g_ctrl->bAutoSize = db_get_b(0, TTB_OPTDIR, "AutoSize", true);
db_unset(NULL, TTB_OPTDIR, "WarningDone");
|