Skip to content

Commit 8b4df8b

Browse files
Change the shortcut for canceling a running query as it conflicts with the shortcut to open a new query tool. #8628
1 parent f98a74b commit 8b4df8b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

docs/en_US/release_notes_9_3.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,7 @@ Bug fixes
3636
| `Issue #8556 <https://github.com/pgadmin-org/pgadmin4/issues/8556>`_ - Ensure that graph data is updated even when the Dashboard tab is inactive.
3737
| `Issue #8572 <https://github.com/pgadmin-org/pgadmin4/issues/8572>`_ - Fixed an issue where Ctrl/Cmd+A in cell editor would select all rows.
3838
| `Issue #8613 <https://github.com/pgadmin-org/pgadmin4/issues/8613>`_ - Fixed an issue where drag and drop function with no parameters does not work.
39+
| `Issue #8628 <https://github.com/pgadmin-org/pgadmin4/issues/8628>`_ - Change the shortcut for canceling a running query as it conflicts with the shortcut to open a new query tool.
3940
| `Issue #8630 <https://github.com/pgadmin-org/pgadmin4/issues/8630>`_ - Fixed an issue where filtering on a view caused an error.
4041
| `Issue #8632 <https://github.com/pgadmin-org/pgadmin4/issues/8632>`_ - Fixed an issue where the query tool went blank when converting history dates to the appropriate locale format.
42+
| `Issue #8651 <https://github.com/pgadmin-org/pgadmin4/issues/8651>`_ - Fixed an issue where the user management tab is not opening in the classic layout.

web/pgadmin/tools/sqleditor/utils/query_tool_preferences.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -768,8 +768,8 @@ def register_query_tool_preferences(self):
768768
'control': False,
769769
'ctrl_is_meta': False,
770770
'key': {
771-
'key_code': 81,
772-
'char': 'q'
771+
'key_code': 67,
772+
'char': 'c'
773773
}
774774
},
775775
category_label=PREF_LABEL_KEYBOARD_SHORTCUTS,

0 commit comments

Comments
 (0)