Skip to content

Commit 323bd64

Browse files
committed
Serial Monitor: move "clear output" button from left to right side
1 parent 99006fc commit 323bd64

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/src/processing/app/AbstractTextMonitor.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -118,13 +118,14 @@ public void actionPerformed(ActionEvent event) {
118118
serialRates.setMaximumSize(serialRates.getMinimumSize());
119119

120120
pane.add(autoscrollBox);
121-
pane.add(clearButton);
122121
pane.add(Box.createHorizontalGlue());
123122
pane.add(noLineEndingAlert);
124123
pane.add(Box.createRigidArea(new Dimension(8, 0)));
125124
pane.add(lineEndings);
126125
pane.add(Box.createRigidArea(new Dimension(8, 0)));
127126
pane.add(serialRates);
127+
pane.add(Box.createRigidArea(new Dimension(8, 0)));
128+
pane.add(clearButton);
128129

129130
mainPane.add(pane, BorderLayout.SOUTH);
130131
}

0 commit comments

Comments
 (0)