diff --git a/docs/en_US/release_notes_4_15.rst b/docs/en_US/release_notes_4_15.rst index 649386fb4..fe09fc523 100644 --- a/docs/en_US/release_notes_4_15.rst +++ b/docs/en_US/release_notes_4_15.rst @@ -20,6 +20,7 @@ Bug fixes | `Issue #3789 `_ - Ensure context menus never get hidden below the menu bar. | `Issue #3913 `_ - Ensure the correct "running at" agent is shown when a pgAgent job is executing. +| `Issue #3915 `_ - Fix an issue in the Query Tool where shortcut keys could be ignored following a query error. | `Issue #4341 `_ - Give appropriate error messages when the user tries to use an blank master password. | `Issue #4459 `_ - Don't quote bigints when copying them from the Query Tool results grid. | `Issue #4482 `_ - Ensure compression level is passed to pg_dump when backing up in directory format. diff --git a/web/pgadmin/static/js/sqleditor/execute_query.js b/web/pgadmin/static/js/sqleditor/execute_query.js index b8baa410d..a87700148 100644 --- a/web/pgadmin/static/js/sqleditor/execute_query.js +++ b/web/pgadmin/static/js/sqleditor/execute_query.js @@ -164,6 +164,7 @@ class ExecuteQuery { self.sqlServerObject.resetQueryHistoryObject(self.sqlServerObject); self.loadingScreen.hide(); + self.sqlServerObject.setIsQueryRunning(false); if (self.sqlServerObject.is_query_tool) { self.enableSQLEditorButtons(); }