Browse Source

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

pull/688/merge
Rikk 9 years ago committed by Damien GERARD
parent
commit
dfc24b1919
  1. 8
      PowerEditor/src/WinControls/ToolBar/ToolBar.cpp

8
PowerEditor/src/WinControls/ToolBar/ToolBar.cpp

@ -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();
}

Loading…
Cancel
Save