summaryrefslogtreecommitdiff
path: root/sw-ui/src/main/kotlin/org
diff options
context:
space:
mode:
authorjoffrey-bion <joffrey.bion@gmail.com>2021-02-15 23:40:14 +0100
committerjoffrey-bion <joffrey.bion@gmail.com>2021-02-15 23:40:14 +0100
commit5242794e2de6246a964223b8da49aa087f5a967b (patch)
tree36efa28bcf153db6da2b4fecb9cf1e51963ec96b /sw-ui/src/main/kotlin/org
parentAdd blueprintjs's Text component (diff)
downloadseven-wonders-5242794e2de6246a964223b8da49aa087f5a967b.tar.gz
seven-wonders-5242794e2de6246a964223b8da49aa087f5a967b.tar.bz2
seven-wonders-5242794e2de6246a964223b8da49aa087f5a967b.zip
Fix player icon size in GameBrowser
Diffstat (limited to 'sw-ui/src/main/kotlin/org')
-rw-r--r--sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/gameBrowser/PlayerInfo.kt1
1 files changed, 1 insertions, 0 deletions
diff --git a/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/gameBrowser/PlayerInfo.kt b/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/gameBrowser/PlayerInfo.kt
index 214663dc..cb9d1ba3 100644
--- a/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/gameBrowser/PlayerInfo.kt
+++ b/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/gameBrowser/PlayerInfo.kt
@@ -127,6 +127,7 @@ private val playerInfo = connectState(
clazz = PlayerInfoPresenter::class,
mapStateToProps = { state, _ ->
player = state.connectedPlayer
+ iconSize = 30
showUsername = true
orientation = FlexDirection.row
ellipsize = false
bgstack15