First, I have another proposal for <@U0F3291QE>. T...
# tornadofx
l
First, I have another proposal for @edvin. Today I've added another extension func to my code, which could be part of the TornadoFX. I wanted to execute some action when someone presses enter in
TextField
(there's actually 2 of them used and when I tried
shortcut("Enter") { }
for both of them, it seems the second one has overwritten the first one since the Enter triggered only for that second TextField. Anyway I also tried
action {}
which had no effect and another interesting thing is, that using
setOnKeyReleased {}
did work for anything but Enter 😄 , so I found on SO that
setOnKeyReleased
should be used -- which I confirm, works fine.