diff options
author | John Stebbins <[email protected]> | 2018-04-16 08:55:31 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2018-04-16 08:55:31 -0700 |
commit | 9b4b3ee193ad82ce1e19e170efcf330325cd7fcf (patch) | |
tree | 3147b3b7f805059825c55bc2737066685387c367 /gtk/src/main.c | |
parent | c4ab876310f5e8f7c4a3d7c75cc4bccd4030e525 (diff) |
LinGui: fix multi-instance queues
Fixes https://github.com/HandBrake/HandBrake/issues/1283
Diffstat (limited to 'gtk/src/main.c')
-rw-r--r-- | gtk/src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/src/main.c b/gtk/src/main.c index 413ad14b0..3ee755ac2 100644 --- a/gtk/src/main.c +++ b/gtk/src/main.c @@ -1341,7 +1341,7 @@ main(int argc, char *argv[]) ghb_ui_register_resource(); ud = g_malloc0(sizeof(signal_user_data_t)); ud->app = gtk_application_new("org.handbrake.ghb", - G_APPLICATION_HANDLES_OPEN); + G_APPLICATION_NON_UNIQUE); // Connect application signals g_signal_connect(ud->app, "activate", (GCallback)ghb_activate_cb, ud); g_signal_connect(ud->app, "open", (GCallback)ghb_open_file_cb, ud); |