Skip to content

Commit 7537221

Browse files
committed
Adjust about screen size to fit logo
1 parent e5c5442 commit 7537221

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/kotlin/be/ugent/topl/mio/ui/AboutScreen.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ import javax.swing.*
1717
open class AboutScreen(protected val config: DebuggerConfig) : JFrame() {
1818
init {
1919
configureTheme()
20-
setSize(400, 300)
21-
minimumSize = Dimension(400, 300)
20+
setSize(450, 350)
21+
minimumSize = Dimension(450, 350)
2222
val mainPanel = JPanel()
2323
mainPanel.setLayout(BoxLayout(mainPanel, BoxLayout.Y_AXIS))
2424
mainPanel.border = BorderFactory.createEmptyBorder(20, 20, 20, 20)

0 commit comments

Comments
 (0)