Skip to content

Commit bb80a78

Browse files
committed
Remove "Move Selected Lines Up" and "Move Selected Lines Down" from the Edit Menu.
1 parent 07b5c8c commit bb80a78

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

app/src/processing/app/ui/Editor.java

-2
Original file line numberDiff line numberDiff line change
@@ -824,12 +824,10 @@ protected JMenu buildEditMenu() {
824824
item = new JMenuItem("Move Selected Lines Up");
825825
item.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_UP, InputEvent.ALT_DOWN_MASK));
826826
item.addActionListener(e -> handleMoveLines(true));
827-
menu.add(item);
828827

829828
item = new JMenuItem("Move Selected Lines Down");
830829
item.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_DOWN, InputEvent.ALT_DOWN_MASK));
831830
item.addActionListener(e -> handleMoveLines(false));
832-
menu.add(item);
833831

834832

835833
// Update copy/cut state on selection/de-selection

0 commit comments

Comments
 (0)