Skip to content

Commit

Permalink
Minor visual fix on the Spotify Playlist Screen
Browse files Browse the repository at this point in the history
  • Loading branch information
VVEIRD committed Dec 27, 2018
1 parent 402d271 commit d372e54
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

import javax.swing.BorderFactory;
import javax.swing.JButton;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
Expand Down Expand Up @@ -132,6 +133,9 @@ public void setPageView(PageViewer pageViewer) {
public JPanel getButtonBar() {
JPanel bb = new JPanel();
bb.setLayout(new FlowLayout(FlowLayout.RIGHT));
JLabel filler = new JLabel("");
filler.setPreferredSize(new Dimension(23, 23));
bb.add(filler);
return bb;
}

Expand Down

0 comments on commit d372e54

Please sign in to comment.