Hi,

Please find the attached patch to fix RM #3295: Shortcut key conflict issue

After opening the debugger, the shift+alt+o short-cut opens the Object menu
as well as perform the step over to the debugger. This issue has been fixed
in this patch.

Thanks,
Khushboo
diff --git a/web/pgadmin/tools/debugger/static/js/direct.js b/web/pgadmin/tools/debugger/static/js/direct.js
index 52c9e66..b9cb2ec 100644
--- a/web/pgadmin/tools/debugger/static/js/direct.js
+++ b/web/pgadmin/tools/debugger/static/js/direct.js
@@ -1850,6 +1850,8 @@ define([
         self.docker.off(wcDocker.EVENT.LOADED);
         // Register the callback when user set/clear the breakpoint on gutter area.
         self.editor.on('gutterClick', self.onBreakPoint.bind(self), self);
+        // Set focus to the debugger container
+        self.$container.focus();
       };
 
       self.docker.startLoading(gettext('Loading...'));

Reply via email to