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.
2 parents 9c1fd0d + 1d266d8 commit 015f952Copy full SHA for 015f952
app/src/processing/app/FindReplace.java
@@ -421,8 +421,11 @@ 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);
+
+ if (searchAllFiles)
426
+ editor.getSketch().setCurrentCode(0); // select the first tab
427
428
+ editor.setSelection(0, 0); // move to the beginning
429
430
boolean foundAtLeastOne = false;
431
while (true) {
0 commit comments