I have multiple tabs in a TabPane. Does tornadofx ...
# tornadofx
o
I have multiple tabs in a TabPane. Does tornadofx have a smooth way of showing that "work" is being done in a tab. Spinner next to the title? other suggestions?
m
tornadofx does have "runAsyncWithOverlay" that will place an animated spinner a given node
it should be possible to set the tab as the node that is being overlayed
m
You can use
Copy code
tab {
   graphic = ... 
}
o
sweet! Thanks