Ctrl + J was broken, so switched to Ctrl + H. :P

This commit is contained in:
Manindra Moharana
2013-08-18 18:48:03 +05:30
parent c3c2a29289
commit a06f27656e

View File

@@ -416,11 +416,11 @@ public class DebugEditor extends JavaEditor implements ActionListener {
listBreakpointsMenuItem = new JMenuItem("List Breakpoints");
listBreakpointsMenuItem.addActionListener(this);
stepOverMenuItem = Toolkit.newJMenuItem("Step", KeyEvent.VK_J);
stepOverMenuItem = Toolkit.newJMenuItem("Step", KeyEvent.VK_H);
stepOverMenuItem.addActionListener(this);
stepIntoMenuItem = Toolkit.newJMenuItemShift("Step Into", KeyEvent.VK_J);
stepIntoMenuItem = Toolkit.newJMenuItemShift("Step Into", KeyEvent.VK_H);
stepIntoMenuItem.addActionListener(this);
stepOutMenuItem = Toolkit.newJMenuItemAlt("Step Out", KeyEvent.VK_J);
stepOutMenuItem = Toolkit.newJMenuItemAlt("Step Out", KeyEvent.VK_H);
stepOutMenuItem.addActionListener(this);
printStackTraceMenuItem = new JMenuItem("Print Stack Trace");