system/ui: fix indentation (#35299)

fix indentation
pull/35143/merge
Dean Lee 5 days ago committed by GitHub
parent 2722e12e62
commit beb7f6c2bb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      system/ui/widgets/keyboard.py

@ -140,7 +140,7 @@ class Keyboard:
is_enabled = key != ENTER_KEY or len(self._input_box.text) >= self._min_text_size is_enabled = key != ENTER_KEY or len(self._input_box.text) >= self._min_text_size
result = -1 result = -1
# Check for backspace key press-and-hold # Check for backspace key press-and-hold
mouse_pos = rl.get_mouse_position() mouse_pos = rl.get_mouse_position()
mouse_over_key = rl.check_collision_point_rec(mouse_pos, key_rect) mouse_over_key = rl.check_collision_point_rec(mouse_pos, key_rect)

Loading…
Cancel
Save