Skip to content

Commit 481a062

Browse files
committed
ecere/gui/Window: Avoid hotKey untoggling remote+inactive controls
1 parent d048332 commit 481a062

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ecere/src/gui/Window.ec

+1-1
Original file line numberDiff line numberDiff line change
@@ -5010,7 +5010,7 @@ private:
50105010
prevActiveWindow.ActivateEx(true, false, false, false, null, null);
50115011
status = false;
50125012
}
5013-
else if(hotKeyWindow.style.inactive)
5013+
else if(hotKeyWindow.style.inactive && !hotKeyWindow.isRemote)
50145014
status = hotKeyWindow.KeyMessage(__ecereVMethodID___ecereNameSpace__ecere__gui__Window_OnKeyUp, Key::hotKey, character);
50155015

50165016
delete prevActiveWindow;

0 commit comments

Comments
 (0)