mirror of
https://github.com/ksherlock/TwoTerm.git
synced 2024-12-30 12:29:43 +00:00
mousetext flag was blocking inverse flag.
This commit is contained in:
parent
5a971ac08c
commit
b1340d2a56
@ -343,9 +343,9 @@
|
|||||||
{
|
{
|
||||||
|
|
||||||
// mouse text actually requires mouse text and inverse to be on.
|
// 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
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user