File tree Expand file tree Collapse file tree 4 files changed +19
-2
lines changed
test/processing/app/helpers Expand file tree Collapse file tree 4 files changed +19
-2
lines changed Original file line number Diff line number Diff line change @@ -1234,6 +1234,7 @@ public void actionPerformed(ActionEvent e) {
1234
1234
menu .add (item );
1235
1235
1236
1236
item = newJMenuItem (_ ("Decrease Indent" ), '[' );
1237
+ item .setName ("menuDecreaseIndent" );
1237
1238
item .addActionListener (new ActionListener () {
1238
1239
public void actionPerformed (ActionEvent e ) {
1239
1240
handleIndentOutdent (false );
Original file line number Diff line number Diff line change @@ -40,4 +40,15 @@ protected String executeInEDT() {
40
40
41
41
});
42
42
}
43
+
44
+ public JEditTextArea selectAll (final JEditTextArea target ) {
45
+ return GuiActionRunner .execute (new GuiQuery <JEditTextArea >() {
46
+
47
+ protected JEditTextArea executeInEDT () {
48
+ target .selectAll ();
49
+ return target ;
50
+ }
51
+
52
+ });
53
+ }
43
54
}
Original file line number Diff line number Diff line change 2
2
3
3
import org .fest .swing .core .Robot ;
4
4
import org .fest .swing .fixture .ComponentFixture ;
5
- import processing .app .syntax .JEditTextArea ;
6
5
7
- import java . awt .* ;
6
+ import processing . app . syntax . JEditTextArea ;
8
7
9
8
public class JEditTextAreaFixture extends ComponentFixture {
10
9
@@ -38,4 +37,9 @@ public JEditTextAreaFixture setText(String text) {
38
37
public String getText () {
39
38
return driver .getText ((JEditTextArea ) target );
40
39
}
40
+
41
+ public JEditTextAreaFixture selectAll () {
42
+ driver .selectAll ((JEditTextArea ) target );
43
+ return this ;
44
+ }
41
45
}
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ ARDUINO 1.5.3 BETA
3
3
4
4
[ide]
5
5
* Removed useless baud rates from serial monitor
6
+ * Fixed some minor IDE UI bugs (Shigeru Kanemoto)
6
7
7
8
[arduino core]
8
9
* sam: Fixed delayMicrosecond() when interrupts are disabled
You can’t perform that action at this time.
0 commit comments