Resolved #13518 - Renamed Screen Size to UI Scale

This commit is contained in:
yairm210 2025-08-06 22:51:56 +03:00
parent 2fd1c6c071
commit ccefcb92bc
2 changed files with 1 additions and 3 deletions

View File

@ -790,8 +790,6 @@ Windowed =
Fullscreen =
Borderless =
# Will soon be deprecated in favor of "UI Scale"
Screen Size =
UI Scale =
### Enable panning the map when you move the mouse to the edge of the window

View File

@ -175,7 +175,7 @@ private fun addScreenModeSelectBox(table: Table, settings: GameSettings, selectB
}
private fun addScreenSizeSelectBox(table: Table, settings: GameSettings, selectBoxMinWidth: Float, onResolutionChange: () -> Unit) {
table.add("Screen Size".toLabel()).left().fillX()
table.add("UI Scale".toLabel()).left().fillX()
val screenSizeSelectBox = TranslatedSelectBox(ScreenSize.entries.map { it.name }, settings.screenSize.name)
table.add(screenSizeSelectBox).minWidth(selectBoxMinWidth).pad(10f).row()