mirror of
https://github.com/sethm/symon.git
synced 2025-01-16 12:30:30 +00:00
Fix swapped labels on status pane
The labels for the X and Y registers were swapped on the status pane. How embarrassing!
This commit is contained in:
parent
4b240d9dfd
commit
34fb8940ae
@ -188,9 +188,9 @@ public class StatusPanel extends JPanel {
|
||||
constraints.insets = new Insets(5, 0, 0, 0);
|
||||
constraints.gridx = 0;
|
||||
constraints.gridy = 8;
|
||||
add(yLabel, constraints);
|
||||
constraints.gridx = 1;
|
||||
add(xLabel, constraints);
|
||||
constraints.gridx = 1;
|
||||
add(yLabel, constraints);
|
||||
|
||||
constraints.insets = new Insets(2, 2, 2, 2);
|
||||
constraints.gridx = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user