We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 402d271 commit d372e54Copy full SHA for d372e54
ESDSoundboardApp/src/main/java/vv3ird/ESDSoundboardApp/ngui/pages/JSpotifySoundPage.java
@@ -14,6 +14,7 @@
14
15
import javax.swing.BorderFactory;
16
import javax.swing.JButton;
17
+import javax.swing.JLabel;
18
import javax.swing.JOptionPane;
19
import javax.swing.JPanel;
20
import javax.swing.JScrollPane;
@@ -132,6 +133,9 @@ public void setPageView(PageViewer pageViewer) {
132
133
public JPanel getButtonBar() {
134
JPanel bb = new JPanel();
135
bb.setLayout(new FlowLayout(FlowLayout.RIGHT));
136
+ JLabel filler = new JLabel("");
137
+ filler.setPreferredSize(new Dimension(23, 23));
138
+ bb.add(filler);
139
return bb;
140
}
141
0 commit comments