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
The attribute Message.sender is incorrectly set to the last widget that was composed instead of pointing to the widget that actually posts the message.
Run the app below and click the screen or the text as you please.
The text log will log events coming from a scrollbar.
For a MMWE get rid of the custom widget altogether and preserve only the on_click handler, which will still show clicks coming from the scrollbar...
You might be thinking that the sender is always self in the call to post_message. A reasonable assumption, but consider self to be the destination of the message.
The attribute
Message.sender
is incorrectly set to the last widget that was composed instead of pointing to the widget that actually posts the message.Run the app below and click the screen or the text as you please.
The text log will log events coming from a scrollbar.
For a MMWE get rid of the custom widget altogether and preserve only the
on_click
handler, which will still show clicks coming from the scrollbar...The text was updated successfully, but these errors were encountered: