Skip to content

Commit

Permalink
ecere/gui/Window: Avoid hotKey untoggling remote+inactive controls
Browse files Browse the repository at this point in the history
  • Loading branch information
jerstlouis committed Dec 29, 2023
1 parent 7f37284 commit 33b59d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ecere/src/gui/Window.ec
Original file line number Diff line number Diff line change
Expand Up @@ -5010,7 +5010,7 @@ private:
prevActiveWindow.ActivateEx(true, false, false, false, null, null);
status = false;
}
else if(hotKeyWindow.style.inactive)
else if(hotKeyWindow.style.inactive && !hotKeyWindow.isRemote)
status = hotKeyWindow.KeyMessage(__ecereVMethodID___ecereNameSpace__ecere__gui__Window_OnKeyUp, Key::hotKey, character);

delete prevActiveWindow;
Expand Down

0 comments on commit 33b59d9

Please sign in to comment.