Made some code in ViewerWidget clearer.

This commit is contained in:
Daan Vanden Bosch 2021-12-11 22:35:33 +01:00
parent 89ea739c65
commit 276ffcb80b

View File

@ -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,
))
}