[Scummvm-git-logs] scummvm master -> 5b9ff55aaf935767c713753c6279b867c2401945
sev-
noreply at scummvm.org
Mon Oct 6 23:22:46 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:
5b9ff55aaf GRAPHICS: MACGUI: Partial fix for blinking text when scrolling MacTextWindow
Commit: 5b9ff55aaf935767c713753c6279b867c2401945
https://github.com/scummvm/scummvm/commit/5b9ff55aaf935767c713753c6279b867c2401945
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2025-10-07T01:21:52+02:00
Commit Message:
GRAPHICS: MACGUI: Partial fix for blinking text when scrolling MacTextWindow
Changed paths:
graphics/macgui/mactextwindow.cpp
diff --git a/graphics/macgui/mactextwindow.cpp b/graphics/macgui/mactextwindow.cpp
index 45b589f100a..fed9c160b9f 100644
--- a/graphics/macgui/mactextwindow.cpp
+++ b/graphics/macgui/mactextwindow.cpp
@@ -314,14 +314,14 @@ bool MacTextWindow::processEvent(Common::Event &event) {
return MacWindow::processEvent(event); // Pass it to upstream
if (event.type == Common::EVENT_WHEELUP) {
- setHighlight(kBorderScrollUp);
+ //setHighlight(kBorderScrollUp);
scroll(-2);
calcScrollBar();
return true;
}
if (event.type == Common::EVENT_WHEELDOWN) {
- setHighlight(kBorderScrollDown);
+ //setHighlight(kBorderScrollDown);
scroll(2);
calcScrollBar();
return true;
More information about the Scummvm-git-logs
mailing list