[Scummvm-git-logs] scummvm master -> ecf98e0ada7a80c4670e196e71cfbf3efb315567
digitall
noreply at scummvm.org
Mon Aug 25 15:28:57 UTC 2025
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
ecf98e0ada WAGE: Fix Automatically Raising Text Window When Typing
Commit: ecf98e0ada7a80c4670e196e71cfbf3efb315567
https://github.com/scummvm/scummvm/commit/ecf98e0ada7a80c4670e196e71cfbf3efb315567
Author: D G Turner (digitall at scummvm.org)
Date: 2025-08-25T16:27:35+01:00
Commit Message:
WAGE: Fix Automatically Raising Text Window When Typing
Thanks to eriktorbjorn for this patch.
Changed paths:
engines/wage/gui.cpp
diff --git a/engines/wage/gui.cpp b/engines/wage/gui.cpp
index 87f17b561ed..235fb49c3a3 100644
--- a/engines/wage/gui.cpp
+++ b/engines/wage/gui.cpp
@@ -275,6 +275,10 @@ bool Gui::processEvent(Common::Event &event) {
}
}
+ if (event.type == Common::EVENT_KEYDOWN) {
+ _wm->setActiveWindow(_consoleWindow->getId());
+ }
+
return _wm->processEvent(event);
}
More information about the Scummvm-git-logs
mailing list