app library popover for addign app group

This commit is contained in:
Ashley Wulber 2022-01-21 14:43:01 -05:00
parent df088dfe8e
commit 1fa7b8243a
8 changed files with 282 additions and 302 deletions

View file

@ -69,6 +69,14 @@ impl AppLibraryWindowInner {
imp.group_grid.get()
}
pub fn is_popup_active(&self) -> bool {
if let Some(group_grid) = self.group_grid() {
group_grid.is_popup_active()
} else {
false
}
}
fn setup_callbacks(&self) {
// Get state
let imp = imp::AppLibraryWindowInner::from_instance(self);