Skip to content

Commit

Permalink
Merge pull request #15 from tauri-apps/fix/appid
Browse files Browse the repository at this point in the history
fix: #14 remove fixed application id
  • Loading branch information
Ngo Iok Ui (Wu Yu Wei) authored May 5, 2021
2 parents f87d01f + 22d76d4 commit 466d8b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/platform_impl/linux/event_loop.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ impl<T: 'static> EventLoop<T> {
}

fn new_gtk() -> Result<EventLoop<T>, Box<dyn Error>> {
let app = gtk::Application::new(Some("org.tauri"), gio::ApplicationFlags::empty())?;
let app = gtk::Application::new(None, gio::ApplicationFlags::empty())?;
let cancellable: Option<&Cancellable> = None;
app.register(cancellable)?;

Expand Down

0 comments on commit 466d8b4

Please sign in to comment.