mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-08-10 18:16:40 +08:00
Dirty wrap around implementation
This commit is contained in:
parent
23a8c94bef
commit
195871e62b
@ -42,13 +42,18 @@ class Text : public Node {
|
||||
continue;
|
||||
}
|
||||
screen.PixelAt(x, y).character = cell;
|
||||
|
||||
if(screen.PixelAt(x, y).selectable == true)
|
||||
{
|
||||
if(screen.selection_region.Contain(x, y)) {
|
||||
screen.PixelAt(x, y).inverted ^= true;
|
||||
screen.selection_text += screen.PixelAt(x, y).character;
|
||||
}
|
||||
else if(screen.selection_region.x_min <= x && screen.selection_region.x_max <= x &&
|
||||
screen.selection_region.y_min <= y && screen.selection_region.y_max > y)
|
||||
{
|
||||
screen.PixelAt(x, y).inverted ^= true;
|
||||
screen.selection_text += screen.PixelAt(x, y).character;
|
||||
}
|
||||
}
|
||||
|
||||
++x;
|
||||
|
Loading…
Reference in New Issue
Block a user