Skip to content

Commit

Permalink
last tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
alyssaruth committed Apr 13, 2024
1 parent a5d7de1 commit d0371e5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/main/kotlin/dartzee/screen/game/TutorialPanel.kt
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class TutorialPanel(private val parent: DartsGameScreen) :
scrollPane.setViewportView(panelWest)
panelWest.border = EtchedBorder(EtchedBorder.RAISED, null, null)
panelWest.layout = MigLayout("al center top")
panelWest.preferredSize = Dimension(500, 1000)
panelWest.preferredSize = Dimension(500, 950)
add(scrollPane, BorderLayout.WEST)

val lblRules = makeTitleLabel("The Rules")
Expand Down Expand Up @@ -92,7 +92,8 @@ class TutorialPanel(private val parent: DartsGameScreen) :
panelCenter.add(panelNorth, BorderLayout.NORTH)
panelNorth.layout = MigLayout("al center top")

val lblGiveItATry = makeTitleLabel("\uD83C\uDFB2 Give it a try!")
val lblGiveItATry = makeTitleLabel(" Give it a try!")
lblGiveItATry.icon = ImageIcon(javaClass.getResource("/buttons/dice.png"))
panelNorth.add(lblGiveItATry, "cell 0 0, growx")
panelNorth.add(makeDivider(), "cell 0 1, alignx center")

Expand Down

0 comments on commit d0371e5

Please sign in to comment.