mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-03 13:58:28 +08:00
Made some code in ViewerWidget clearer.
This commit is contained in:
parent
89ea739c65
commit
276ffcb80b
@ -25,10 +25,12 @@ class ViewerWidget(
|
||||
className = "pw-viewer-viewer-content"
|
||||
|
||||
addChild(SelectionWidget(
|
||||
ctrl.characterClasses,
|
||||
ctrl.currentCharacterClass,
|
||||
{ char -> scope.launch { ctrl.setCurrentCharacterClass(char) } },
|
||||
{ it.uiName },
|
||||
items = ctrl.characterClasses,
|
||||
selected = ctrl.currentCharacterClass,
|
||||
onSelect = { char ->
|
||||
scope.launch { ctrl.setCurrentCharacterClass(char) }
|
||||
},
|
||||
itemToString = { it.uiName },
|
||||
))
|
||||
addChild(createCharacterClassOptionsWidget())
|
||||
addChild(TabContainer(ctrl = ctrl, createWidget = { tab ->
|
||||
@ -38,10 +40,12 @@ class ViewerWidget(
|
||||
}
|
||||
}))
|
||||
addChild(SelectionWidget(
|
||||
ctrl.animations,
|
||||
ctrl.currentAnimation,
|
||||
{ animation -> scope.launch { ctrl.setCurrentAnimation(animation) } },
|
||||
{ it.name },
|
||||
items = ctrl.animations,
|
||||
selected = ctrl.currentAnimation,
|
||||
onSelect = { animation ->
|
||||
scope.launch { ctrl.setCurrentAnimation(animation) }
|
||||
},
|
||||
itemToString = { it.name },
|
||||
borderLeft = true,
|
||||
))
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user