Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntenore Gatta <antenore@simbiosi.org>2020-05-01 14:02:40 +0300
committerAntenore Gatta <antenore@simbiosi.org>2020-05-01 14:02:40 +0300
commit334055d328fbe7a1f58c7f476560f615cfb54c9f (patch)
treef19e2bb4f38b959cc1c4e25c89d350390ac206bb /src/remmina.c
parent40ee1ba4e735299a79367e813c0d31e76608b573 (diff)
parentb4c3d130843f1abe79af6d34b5455f8d319ac35f (diff)
Merge branch 'multi-instance' into 'master'
Allow users to override the app ID See merge request Remmina/Remmina!2044
Diffstat (limited to 'src/remmina.c')
-rw-r--r--src/remmina.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remmina.c b/src/remmina.c
index 95c5ef692..ca04a2b3c 100644
--- a/src/remmina.c
+++ b/src/remmina.c
@@ -341,7 +341,7 @@ int main(int argc, char *argv[])
app_id = g_application_id_is_valid(REMMINA_APP_ID) ? REMMINA_APP_ID : NULL;
- app = gtk_application_new(app_id, G_APPLICATION_HANDLES_COMMAND_LINE);
+ app = gtk_application_new(app_id, G_APPLICATION_HANDLES_COMMAND_LINE | G_APPLICATION_CAN_OVERRIDE_APP_ID);
#if !GTK_CHECK_VERSION(4, 0, 0) /* This is not needed anymore starting from GTK 4 */
g_set_prgname(app_id);
#endif