<@U78L28DMX> The breakpoint you put on Line 8 will...
# tornadofx
e
@amanda.hinchman-dominguez The breakpoint you put on Line 8 will fire when the call to
ui
runs, i.e immediately when
tryLogin
is run. If you want to set a breakpoint to intercept the async callback to the code inside of the
ui
block, set a breakpoint on line 10 instead. That's inside of the callback code block.
👍 1