mirror of
https://github.com/1j01/textual-paint.git
synced 2024-12-30 18:23:03 +03:00
Fix indent
This commit is contained in:
parent
0754db7218
commit
e3c985d0a5
2
paint.py
2
paint.py
@ -2763,7 +2763,7 @@ class PaintApp(App[None]):
|
||||
y = self.image.selection.contained_image.height - 1
|
||||
# self.image.selection.textbox_edited = True
|
||||
elif key == "left":
|
||||
x = max(0, x - 1)
|
||||
x = max(0, x - 1)
|
||||
elif key == "right":
|
||||
x = min(self.image.selection.contained_image.width - 1, x + 1)
|
||||
elif key == "up":
|
||||
|
Loading…
Reference in New Issue
Block a user