Sam Keene
Sam Keene
So played around for 8 hours.. most of which is trying to fix a bug or two. One of which I've opened in issue over in tornadofx2. I've hit a...
I was able to fix it by replacing: ``` style { graphic = when { it == "ROOT" -> URI("root.png") else -> URI("not_root.png") } } ``` With ``` graphic =...
It works for me when you wrap your three vboxs in a parent container like a vbox. Scrollpane is intended to wrap a single node or layout, so when you...
So I fixed it by fluke but I don't understand how it fixed it: If I remove `var group: MyGroupModel by groupProperty` from `MyItemModel` and in `MyItemViewModel` I bind directly...
> It’s also worth going to Slack instead of chatting in git Sure. I haven't used Slack before but send me an invite link and I'll jump in. I think...
> https://kotlinlang.slack.com/messages/tornadofx/ Eh, sorry for being stupid, but I don't understand how I can actually join?
Hey @deggers > I did some refactoring because you missed some nice extension-function tornadoFX provides. Would love to see what ones I missed! > Furthermore your first mentioned error you...
I think this looks good - could you apply this bugfix to the [tornadofx2 ](https://github.com/edvin/tornadofx2) repo and then I can modify the [reference ](https://github.com/edvin/tornadofx2/blob/master/src/main/java/tornadofx/Workspace.kt#L315) in the workspace (or you could...
I've been playing around having faced the same problem and I achieved a solution that also keeps the UI updated. ``` // in view model val pages = bind(ProjectModel::pages) //...
Thanks @SchweinchenFuntik that fixed it you've saved me a big headache here! Can you help me understand what exactly was wrong. What do you mean by `hbox` is likely to...