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 {