Toolbar: properly refresh when switching over small/big icons (fixes #673, closes #692)

This commit is contained in:
Rikk 2015-08-09 21:05:28 -03:00 committed by Damien GERARD
parent 0844123b44
commit dfc24b1919
1 changed files with 4 additions and 4 deletions

View File

@ -212,9 +212,9 @@ void ToolBar::reduce()
int iconDpiDynamicalSize = NppParameters::getInstance()->_dpiManager.scaleX(16);
_toolBarIcons.resizeIcon(iconDpiDynamicalSize);
bool recreate = (_state == TB_STANDARD);
bool recreate = (_state == TB_STANDARD || _state == TB_LARGE);
setState(TB_SMALL);
reset(recreate); //recreate toolbar if std icons were used
reset(recreate); //recreate toolbar if previous state was Std icons or Big icons
Window::redraw();
}
@ -225,9 +225,9 @@ void ToolBar::enlarge()
int iconDpiDynamicalSize = NppParameters::getInstance()->_dpiManager.scaleX(32);
_toolBarIcons.resizeIcon(iconDpiDynamicalSize);
bool recreate = (_state == TB_STANDARD);
bool recreate = (_state == TB_STANDARD || _state == TB_SMALL);
setState(TB_LARGE);
reset(recreate); //recreate toolbar if std icons were used
reset(recreate); //recreate toolbar if previous state was Std icons or Small icons
Window::redraw();
}