Skip to content

Commit d2b354d

Browse files
committed
Fix wrong labels alignment
1 parent ca95412 commit d2b354d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/processing/mode/android/KeystoreCredentials.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ public void mouseClicked(MouseEvent e) {
114114
localityNameLabel.setLabelFor(localityName);
115115

116116
textPane = new JPanel(new FlowLayout(FlowLayout.TRAILING));
117-
textPane.add(localityName);
118117
textPane.add(localityNameLabel);
118+
textPane.add(localityName);
119119
textPane.setAlignmentX(LEFT_ALIGNMENT);
120120
pain.add(textPane);
121121

@@ -125,8 +125,8 @@ public void mouseClicked(MouseEvent e) {
125125
stateNameLabel.setLabelFor(stateName);
126126

127127
textPane = new JPanel(new FlowLayout(FlowLayout.TRAILING));
128-
textPane.add(stateName);
129128
textPane.add(stateNameLabel);
129+
textPane.add(stateName);
130130
textPane.setAlignmentX(LEFT_ALIGNMENT);
131131
pain.add(textPane);
132132

@@ -136,8 +136,8 @@ public void mouseClicked(MouseEvent e) {
136136
countryLabel.setLabelFor(country);
137137

138138
textPane = new JPanel(new FlowLayout(FlowLayout.TRAILING));
139-
textPane.add(country);
140139
textPane.add(countryLabel);
140+
textPane.add(country);
141141
textPane.setAlignmentX(LEFT_ALIGNMENT);
142142
pain.add(textPane);
143143

0 commit comments

Comments
 (0)