From b1340d2a562d860fbd9afa72d00e3eb140c98754 Mon Sep 17 00:00:00 2001 From: Kelvin Sherlock Date: Sat, 27 Mar 2021 23:53:52 -0400 Subject: [PATCH] mousetext flag was blocking inverse flag. --- Views/EmulatorView.mm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Views/EmulatorView.mm b/Views/EmulatorView.mm index 42d33a8..01c27e4 100644 --- a/Views/EmulatorView.mm +++ b/Views/EmulatorView.mm @@ -343,9 +343,9 @@ { // mouse text actually requires mouse text and inverse to be on. - if (flag & Screen::FlagMouseText) + if ((flag & Screen::FlagMouseText) && c >= '@' && c <= '_') { - if (c >= '@' && c <= '_') c |= 0x80; + c |= 0x80; } else {