mirror of
https://github.com/ksherlock/TwoTerm.git
synced 2026-04-20 19:16:35 +00:00
mousetext flag was blocking inverse flag.
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user