Skip to content

Commit

Permalink
fix: colon and whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Adriankhl committed Sep 20, 2022
1 parent a258a57 commit ff94537
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -649,16 +649,16 @@ class GameScreenControlBar(

leftTopTable.add(timeDelayLabel).space(10f)

leftTopTable.add(createLabel("z limit:", gdxSettings.smallFontSize))
leftTopTable.add(createLabel("z limit: ", gdxSettings.smallFontSize))
leftTopTable.add(zLimitSelectBox).space(10f)

leftBottomTable.add(createLabel("x:", gdxSettings.smallFontSize))
leftBottomTable.add(createLabel("x: ", gdxSettings.smallFontSize))
leftBottomTable.add(xCoordinateSelectBox).space(10f)

leftBottomTable.add(createLabel("y:", gdxSettings.smallFontSize))
leftBottomTable.add(createLabel("y: ", gdxSettings.smallFontSize))
leftBottomTable.add(yCoordinateSelectBox).space(10f)

leftBottomTable.add(createLabel("z:", gdxSettings.smallFontSize))
leftBottomTable.add(createLabel("z: ", gdxSettings.smallFontSize))
leftBottomTable.add(zCoordinateSelectBox).space(10f)

rightTable.add(confirmViewButton)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,7 @@ class EconomyInfoPane(val game: RelativitizationGame) : UpperInfoPane<ScrollPane

nestedTable.add(
createLabel(
"Tariff:",
"Tariff: ",
gdxSettings.normalFontSize
)
).colspan(2)
Expand Down Expand Up @@ -805,7 +805,7 @@ class EconomyInfoPane(val game: RelativitizationGame) : UpperInfoPane<ScrollPane

nestedTable.add(
createLabel(
"Income tax:",
"Income tax: ",
gdxSettings.normalFontSize
)
).colspan(2)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ class PopSystemInfoPane(val game: RelativitizationGame) : UpperInfoPane<ScrollPa

val carrierIdTable = Table()

carrierIdTable.add(createLabel("Carrier:", gdxSettings.normalFontSize)).pad(5f)
carrierIdTable.add(createLabel("Carrier: ", gdxSettings.normalFontSize)).pad(5f)

updateCarrierId()
val carrierIdSelectBox = createSelectBox(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ class RegisterPlayerScreen(val game: RelativitizationGame) : TableScreen(game.as

table.add(
createLabel(
"Register player settings :",
"Register player settings:",
gdxSettings.hugeFontSize
)
).colspan(2)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class ServerSettingsScreen(val game: RelativitizationGame) : TableScreen(game.as
private fun createServerSettingsScrollPane(): ScrollPane {
val table = Table()

table.add(createLabel("Server settings :", gdxSettings.hugeFontSize)).colspan(2)
table.add(createLabel("Server settings:", gdxSettings.hugeFontSize)).colspan(2)

table.row().space(20f)

Expand Down

0 comments on commit ff94537

Please sign in to comment.