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" className = "pw-viewer-viewer-content"
addChild(SelectionWidget( addChild(SelectionWidget(
ctrl.characterClasses, items = ctrl.characterClasses,
ctrl.currentCharacterClass, selected = ctrl.currentCharacterClass,
{ char -> scope.launch { ctrl.setCurrentCharacterClass(char) } }, onSelect = { char ->
{ it.uiName }, scope.launch { ctrl.setCurrentCharacterClass(char) }
},
itemToString = { it.uiName },
)) ))
addChild(createCharacterClassOptionsWidget()) addChild(createCharacterClassOptionsWidget())
addChild(TabContainer(ctrl = ctrl, createWidget = { tab -> addChild(TabContainer(ctrl = ctrl, createWidget = { tab ->
@ -38,10 +40,12 @@ class ViewerWidget(
} }
})) }))
addChild(SelectionWidget( addChild(SelectionWidget(
ctrl.animations, items = ctrl.animations,
ctrl.currentAnimation, selected = ctrl.currentAnimation,
{ animation -> scope.launch { ctrl.setCurrentAnimation(animation) } }, onSelect = { animation ->
{ it.name }, scope.launch { ctrl.setCurrentAnimation(animation) }
},
itemToString = { it.name },
borderLeft = true, borderLeft = true,
)) ))
} }