main.c (gtk3.4+): G_APPLICATION_NON_UNIQUE

This commit is contained in:
wdlkmpx 2021-02-22 15:07:05 +08:00
parent e390c1e063
commit 802a4bda50
1 changed files with 1 additions and 1 deletions

View File

@ -761,7 +761,7 @@ int main(int argc, char **argv)
// Handling cmd line args with GApplication is a nightmare
// follow this: https://developer.gnome.org/gtkmm-tutorial/stable/sec-multi-item-containers.html.en#boxes-command-line-options
argc = 1; /* hide args from GApplication */
gmrun_app = gtk_application_new ("org.gtk.gmrun", G_APPLICATION_FLAGS_NONE);
gmrun_app = gtk_application_new ("org.gtk.gmrun", G_APPLICATION_NON_UNIQUE);
g_signal_connect (gmrun_app, "activate", gmrun_activate, NULL);
status = g_application_run (G_APPLICATION (gmrun_app), argc, argv);
g_object_unref (gmrun_app);