You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This doesn't happen in Morphic host, and the following steps show this seems to be the behavior of SDL2, as I traced low-level events as they come from the SDL2 event loop: @ELePors
Add in the block closure of OSSDL2Driver>>#processEvent: this sentence: Stdio stdout << mappedEvent asString; lf; flush.
Evaluate in a Workspace:
spaceA :=BlSpacenew.
spaceB :=BlSpacenew.
{ spaceA. spaceB } do: [ :each |
each root
addEventHandlerOn:BlClickEventdo: [ :evt |
each root background:Color random.
evt traceCr ].
each extent:100 asPoint.
" each useMorphicHost."
each show ]