diff options
author | dec05eba <dec05eba@protonmail.com> | 2023-02-19 14:37:10 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2023-02-19 14:37:10 +0100 |
commit | ad5d5a3afd84a5ad2c3240a8e4396ebf07fcb009 (patch) | |
tree | 303db96d1986b62d1d1f9af4423bd701e8642f98 /src/main.cpp | |
parent | c4100f3c6633607e5d3277af450bee00456f09f9 (diff) |
Switch back from G_APPLICATION_DEFAULT_FLAGS to G_APPLICATION_FLAGS_NONE becauase flatpak gtk version is old
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 71f9fec..f4cbff4 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2386,7 +2386,7 @@ static void activate(GtkApplication *app, gpointer userdata) { int main(int argc, char **argv) { setlocale(LC_ALL, "C"); - GtkApplication *app = gtk_application_new("com.dec05eba.gpu_screen_recorder", G_APPLICATION_DEFAULT_FLAGS); + GtkApplication *app = gtk_application_new("com.dec05eba.gpu_screen_recorder", G_APPLICATION_FLAGS_NONE); g_signal_connect(app, "activate", G_CALLBACK(activate), nullptr); int status = g_application_run(G_APPLICATION(app), argc, argv); g_object_unref(app); |