Is it expected behavior or a bug that `Popup()` wi...
# compose-desktop
m
Is it expected behavior or a bug that
Popup()
with
dismissOnClickOutside = true
only dismisses on left clicks? Right clicks not dismissing it means that you can open multiple context menus as subsequent right clicks don't close the previous ones.
i
Expected
If you want to block everything below
Popup
- you can make it
focusable
m
I see. I solved this by adding a flag shared by all context menus so that opening any will close any already open one.