Fix indent

This commit is contained in:
Isaiah Odhner 2023-04-26 17:15:27 -04:00
parent 0754db7218
commit e3c985d0a5

View File

@ -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":