Skip to content

Commit 156ab9d

Browse files
committed
Fix about window size
1 parent 61e88e6 commit 156ab9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/the/bytecode/club/jda/gui/dialogs/AboutWindow.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class AboutWindow extends JFrame {
2020

2121
public AboutWindow() {
2222
this.setIconImages(Resources.iconList);
23-
setSize(new Dimension(400, 400));
23+
setSize(new Dimension(400, 410));
2424
setType(Type.UTILITY);
2525
setTitle("JDA - About");
2626
getContentPane().setLayout(new CardLayout(0, 0));

0 commit comments

Comments
 (0)