Skip to content

Commit

Permalink
Fixed ILB scrolling
Browse files Browse the repository at this point in the history
  • Loading branch information
markqvist committed Jan 18, 2024
1 parent 92a49c1 commit 6a460d9
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -269,11 +269,13 @@ def mouse_event(self, size, event, button, col, row, focus):

# mousewheel up
elif button == 4.0:
was_handeled = self._pass_key_to_contained_listbox(modified_size, "page up")
# was_handeled = self._pass_key_to_contained_listbox(modified_size, "page up")
was_handeled = self._pass_key_to_contained_listbox(modified_size, "up")

# mousewheel down
elif button == 5.0:
was_handeled = self._pass_key_to_contained_listbox(modified_size, "page down")
# was_handeled = self._pass_key_to_contained_listbox(modified_size, "page down")
was_handeled = self._pass_key_to_contained_listbox(modified_size, "down")

focus_position_after_input = self.get_selected_position()

Expand Down

0 comments on commit 6a460d9

Please sign in to comment.