[Scummvm-git-logs] scummvm master -> 75dfe12286d5fa2fe6b5dd0b15fdb0a3c23fcd23
bluegr
noreply at scummvm.org
Mon Aug 29 05:34:53 UTC 2022
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
75dfe12286 GUI: TTS: strip GUI formatting before reading list item
Commit: 75dfe12286d5fa2fe6b5dd0b15fdb0a3c23fcd23
https://github.com/scummvm/scummvm/commit/75dfe12286d5fa2fe6b5dd0b15fdb0a3c23fcd23
Author: Niv Baehr (bloop93 at gmail.com)
Date: 2022-08-29T08:34:48+03:00
Commit Message:
GUI: TTS: strip GUI formatting before reading list item
Changed paths:
gui/widgets/list.cpp
diff --git a/gui/widgets/list.cpp b/gui/widgets/list.cpp
index 3e38c38fe64..ba2c0e295ee 100644
--- a/gui/widgets/list.cpp
+++ b/gui/widgets/list.cpp
@@ -285,7 +285,7 @@ void ListWidget::handleMouseMoved(int x, int y, int button) {
if (item != -1) {
if(_lastRead != item) {
- read(_list[item]);
+ read(stripGUIformatting(_list[item]));
_lastRead = item;
}
}
More information about the Scummvm-git-logs
mailing list