Skip to content

Commit 664de49

Browse files
committed
Finish Merge From Main
1 parent 21f8034 commit 664de49

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CodeEdit/Features/WindowCommands/EditorCommands.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ struct EditorCommands: Commands {
1919
CommandMenu("Editor") {
2020
Menu("Structure") {
2121
Button("Move line up") {
22-
editor?.selectedTab?.rangeTranslator?.moveLinesUp()
22+
editor?.selectedTab?.rangeTranslator.moveLinesUp()
2323
}
2424
.keyboardShortcut("[", modifiers: [.command, .option])
2525

2626
Button("Move line down") {
27-
editor?.selectedTab?.rangeTranslator?.moveLinesDown()
27+
editor?.selectedTab?.rangeTranslator.moveLinesDown()
2828
}
2929
.keyboardShortcut("]", modifiers: [.command, .option])
3030
}

0 commit comments

Comments
 (0)