Skip to content

Commit ee60c66

Browse files
committed
Fix about window appdata path
1 parent b7462ec commit ee60c66

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/application.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,10 @@ impl NotifyApplication {
217217
}
218218

219219
fn show_about_dialog(&self) {
220-
let dialog = adw::AboutWindow::from_appdata("/com/ranfdev/Notify/metainfo.xml", None);
220+
let dialog = adw::AboutWindow::from_appdata(
221+
"/com/ranfdev/Notify/com.ranfdev.Notify.metainfo.xml",
222+
None,
223+
);
221224
if let Some(w) = self.imp().window.borrow().upgrade() {
222225
dialog.set_transient_for(Some(&w));
223226
}

0 commit comments

Comments
 (0)