We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44788e3 commit 3482853Copy full SHA for 3482853
app/src/processing/app/ui/Editor.java
@@ -1959,7 +1959,7 @@ public void handleMoveLines(boolean moveUp) {
1959
startCompoundEdit();
1960
boolean isSelected = false;
1961
1962
- if(textarea.isSelectionActive())
+ if (textarea.isSelectionActive())
1963
isSelected = true;
1964
1965
int caretPos = textarea.getCaretPosition();
@@ -2031,7 +2031,7 @@ public void handleMoveLines(boolean moveUp) {
2031
}
2032
stopCompoundEdit();
2033
2034
- if(isSelected)
+ if (isSelected)
2035
SwingUtilities.invokeLater(() -> {
2036
textarea.select(newSelectionStart, newSelectionEnd-1);
2037
});
0 commit comments