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 0094145 commit 87989a2Copy full SHA for 87989a2
app/src/processing/app/FindReplace.java
@@ -421,8 +421,9 @@ public void replaceAndFindNext() {
421
public void replaceAll() {
422
if (findField.getText().length() == 0)
423
return;
424
- // move to the beginning
425
- editor.setSelection(0, 0);
+
+ editor.getSketch().setCurrentCode(0); // select the first tab
426
+ editor.setSelection(0, 0); // move to the beginning
427
428
boolean foundAtLeastOne = false;
429
while (true) {
0 commit comments