diff --git a/docs/en_US/release_notes_9_3.rst b/docs/en_US/release_notes_9_3.rst index ce2d726f3..9671dfaba 100644 --- a/docs/en_US/release_notes_9_3.rst +++ b/docs/en_US/release_notes_9_3.rst @@ -36,5 +36,7 @@ Bug fixes | `Issue #8556 `_ - Ensure that graph data is updated even when the Dashboard tab is inactive. | `Issue #8572 `_ - Fixed an issue where Ctrl/Cmd+A in cell editor would select all rows. | `Issue #8613 `_ - Fixed an issue where drag and drop function with no parameters does not work. + | `Issue #8628 `_ - Change the shortcut for canceling a running query as it conflicts with the shortcut to open a new query tool. | `Issue #8630 `_ - Fixed an issue where filtering on a view caused an error. | `Issue #8632 `_ - Fixed an issue where the query tool went blank when converting history dates to the appropriate locale format. + | `Issue #8651 `_ - Fixed an issue where the user management tab is not opening in the classic layout. diff --git a/web/pgadmin/tools/sqleditor/utils/query_tool_preferences.py b/web/pgadmin/tools/sqleditor/utils/query_tool_preferences.py index 4e53fc8c8..d22adfe49 100644 --- a/web/pgadmin/tools/sqleditor/utils/query_tool_preferences.py +++ b/web/pgadmin/tools/sqleditor/utils/query_tool_preferences.py @@ -768,8 +768,8 @@ def register_query_tool_preferences(self): 'control': False, 'ctrl_is_meta': False, 'key': { - 'key_code': 81, - 'char': 'q' + 'key_code': 67, + 'char': 'c' } }, category_label=PREF_LABEL_KEYBOARD_SHORTCUTS,