Open pavel-krivanek opened 4 years ago
When you have a mouse enter event installed on a button, it works well:
app := SpApplication new. app useBackend: #Gtk. presenter := SpButtonPresenter newApplication: app. presenter eventHandler whenMouseEnterDo: [ :evt | evt traceCr. ]. presenter openWithSpec.
However, if you do the same for image presenter, the event is not processed:
app := SpApplication new. app useBackend: #Gtk. presenter := SpImagePresenter newApplication: app. presenter eventHandler whenMouseEnterDo: [ :evt | evt traceCr. ]. presenter openWithSpec.
On Morphic, it does not work in any case
this is fixed now, can you confirm @pavel-krivanek ?
When you have a mouse enter event installed on a button, it works well:
However, if you do the same for image presenter, the event is not processed:
On Morphic, it does not work in any case