mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 22:32:41 +00:00
[MSPAINT] Don't hide selection on zooming (#4266)
- Don't hide the selection window on zooming. - Move the selection window by calling placeSelWin() when zoomed. CORE-17969
This commit is contained in:
parent
fec440d8b8
commit
edf92c004d
4 changed files with 10 additions and 1 deletions
|
@ -181,6 +181,8 @@ void ToolsModel::NotifyZoomChanged()
|
|||
toolSettingsWindow.SendMessage(WM_TOOLSMODELZOOMCHANGED);
|
||||
if (textEditWindow.IsWindow())
|
||||
textEditWindow.SendMessage(WM_TOOLSMODELZOOMCHANGED);
|
||||
if (selectionWindow.IsWindow())
|
||||
selectionWindow.SendMessage(WM_TOOLSMODELZOOMCHANGED);
|
||||
}
|
||||
|
||||
void ToolsModel::OnButtonDown(BOOL bLeftButton, LONG x, LONG y, BOOL bDoubleClick)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue