about summary refs log tree commit diff
path: root/src/main.rs
diff options
context:
space:
mode:
authorRicky Kresslein <ricky@kressle.in>2022-02-20 19:19:45 +0100
committerRicky Kresslein <ricky@kressle.in>2022-02-20 19:19:45 +0100
commit2a8e1c75863bc84c55eadcff1f3adb42d409d180 (patch)
tree8f5bb0f816a5ecffa25a01ab15ee84bc717cf99f /src/main.rs
parent379561117862952d567bfdbf0700b5c7f470a1a8 (diff)
downloadFurtherance-2a8e1c75863bc84c55eadcff1f3adb42d409d180.tar.zst
- Distinctive development mode
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index a4959c0..d9b299e 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -22,7 +22,7 @@ mod settings_manager;
 
 use self::application::FurtheranceApplication;
 
-use config::{GETTEXT_PACKAGE, LOCALEDIR, PKGDATADIR};
+use config::{GETTEXT_PACKAGE, LOCALEDIR, PKGDATADIR, APP_ID};
 use gettextrs::{bind_textdomain_codeset, bindtextdomain, textdomain};
 use gtk::{gio, glib};
 use gtk::prelude::*;
@@ -47,7 +47,7 @@ fn main() {
     // Create a new GtkApplication. The application manages our main loop,
     // application windows, integration with the window manager/compositor, and
     // desktop features such as file opening and single-instance applications.
-    let app = FurtheranceApplication::new("com.lakoliu.Furtherance", &gio::ApplicationFlags::empty());
+    let app = FurtheranceApplication::new(APP_ID, &gio::ApplicationFlags::empty());
 
     glib::set_application_name("Furtherance");