Skip to content

Commit 74e910d

Browse files
Fix Ctrl-Shift-Down selection in Grid Editor. Closes #2962
1 parent 0c96417 commit 74e910d

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ mockito
44
invoke
55
urllib3>=2.2.2 # not directly required, pinned by Snyk to avoid a vulnerability
66
zipp>=3.19.1 # not directly required, pinned by Snyk to avoid a vulnerability
7-
requests>=2.32.3
7+
requests>=2.32.4
88
github3.py
99
memory-profiler
1010
pylint

src/robotide/editor/kweditor.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -799,6 +799,7 @@ def _call_ctrl_shift_function(self, event: object, keycode: int):
799799
self.on_move_rows_up(event)
800800
else:
801801
self.on_move_rows_down(event)
802+
return False
802803
"""
803804
elif keycode == ord('3'):
804805
self._open_cell_editor_and_execute_sharp_comment()

src/robotide/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
#
1616
# Automatically generated by `tasks.py`.
1717

18-
VERSION = 'v2.2dev31'
18+
VERSION = 'v2.2dev32'

0 commit comments

Comments
 (0)