We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b95dabf commit a110e28Copy full SHA for a110e28
src/window.rs
@@ -163,7 +163,9 @@ impl DistroShelfWindow {
163
this.root_store()
164
.connect_current_dialog_notify(move |root_store| {
165
if let Some(dialog) = this_clone.current_dialog() {
166
- dialog.close();
+ if dialog.parent().is_some() {
167
+ dialog.close();
168
+ }
169
}
170
let dialog: adw::Dialog = match dbg!(root_store.current_dialog().tag().as_str()) {
171
"exportable-apps" => ExportableAppsDialog::new(
0 commit comments