Skip to content

Commit d372e54

Browse files
committed
Minor visual fix on the Spotify Playlist Screen
1 parent 402d271 commit d372e54

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

ESDSoundboardApp/src/main/java/vv3ird/ESDSoundboardApp/ngui/pages/JSpotifySoundPage.java

+4
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
import javax.swing.BorderFactory;
1616
import javax.swing.JButton;
17+
import javax.swing.JLabel;
1718
import javax.swing.JOptionPane;
1819
import javax.swing.JPanel;
1920
import javax.swing.JScrollPane;
@@ -132,6 +133,9 @@ public void setPageView(PageViewer pageViewer) {
132133
public JPanel getButtonBar() {
133134
JPanel bb = new JPanel();
134135
bb.setLayout(new FlowLayout(FlowLayout.RIGHT));
136+
JLabel filler = new JLabel("");
137+
filler.setPreferredSize(new Dimension(23, 23));
138+
bb.add(filler);
135139
return bb;
136140
}
137141

0 commit comments

Comments
 (0)