mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-17 22:23:10 +03:00
@ -421,8 +421,11 @@ public class FindReplace extends JFrame implements ActionListener {
|
|||||||
public void replaceAll() {
|
public void replaceAll() {
|
||||||
if (findField.getText().length() == 0)
|
if (findField.getText().length() == 0)
|
||||||
return;
|
return;
|
||||||
// move to the beginning
|
|
||||||
editor.setSelection(0, 0);
|
if (searchAllFiles)
|
||||||
|
editor.getSketch().setCurrentCode(0); // select the first tab
|
||||||
|
|
||||||
|
editor.setSelection(0, 0); // move to the beginning
|
||||||
|
|
||||||
boolean foundAtLeastOne = false;
|
boolean foundAtLeastOne = false;
|
||||||
while (true) {
|
while (true) {
|
||||||
|
Reference in New Issue
Block a user