-
-
Notifications
You must be signed in to change notification settings - Fork 51
static function for popdown #670
Copy link
Copy link
Open
Labels
Needs DesignWaiting for input from the UX teamWaiting for input from the UX teamPriority: WishlistNot a priority, but something that might be niceNot a priority, but something that might be nice
Metadata
Metadata
Assignees
Labels
Needs DesignWaiting for input from the UX teamWaiting for input from the UX teamPriority: WishlistNot a priority, but something that might be niceNot a priority, but something that might be nice
Problem
We have a signal
public signal void close ();in Indicator but often we want to call popdown from other classes than the main indicator class. We can do that either by chaining up signals—which is kinda gross—or ignoring this function altogether and usingget_ancestor. Neither of which are super idealProposal
A function we can call from any part of the indicator to close the popover
Prior Art (Optional)
No response