diff options
author | Paul Gilbert | 2015-05-17 17:50:13 -0400 |
---|---|---|
committer | Paul Gilbert | 2015-05-17 17:50:13 -0400 |
commit | 46c68176f8311ca9ae1e5982da4520de20830431 (patch) | |
tree | 4fd3f57e3fdba36d1c90e6b276cfd23d473ddfd4 /engines/sherlock | |
parent | 12f260d66ea3443dd4b0c599c42d02ed7d0324d1 (diff) | |
download | scummvm-rg350-46c68176f8311ca9ae1e5982da4520de20830431.tar.gz scummvm-rg350-46c68176f8311ca9ae1e5982da4520de20830431.tar.bz2 scummvm-rg350-46c68176f8311ca9ae1e5982da4520de20830431.zip |
SHERLOCK: Journal search buttons shouldn't have keyboard highlights
Diffstat (limited to 'engines/sherlock')
-rw-r--r-- | engines/sherlock/journal.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/sherlock/journal.cpp b/engines/sherlock/journal.cpp index b9b66e74ad..9fad7bdfad 100644 --- a/engines/sherlock/journal.cpp +++ b/engines/sherlock/journal.cpp @@ -1032,6 +1032,12 @@ int Journal::getFindName(bool printError) { SEARCH_POINTS[1][2] - screen.stringWidth("Backward") / 2, "Backward"); screen.makeButton(Common::Rect(SEARCH_POINTS[2][0], yp, SEARCH_POINTS[2][1], yp + 10), SEARCH_POINTS[2][2] - screen.stringWidth("Forward") / 2, "Forward"); + screen.gPrint(Common::Point(SEARCH_POINTS[0][2] - screen.stringWidth("Exit") / 2, yp), + COMMAND_FOREGROUND, "E"); + screen.gPrint(Common::Point(SEARCH_POINTS[1][2] - screen.stringWidth("Backward") / 2, yp), + COMMAND_FOREGROUND, "B"); + screen.gPrint(Common::Point(SEARCH_POINTS[2][2] - screen.stringWidth("Forward") / 2, yp), + COMMAND_FOREGROUND, "F"); screen.makeField(Common::Rect(12, 185, 307, 196)); |