diff options
author | Eric Koegel <eric.koegel@gmail.com> | 2015-03-20 10:34:04 +0300 |
---|---|---|
committer | Eric Koegel <eric.koegel@gmail.com> | 2015-03-22 14:58:20 +0300 |
commit | 553ff3cf76706c3ca170a94f0ec0d2fd737f2796 (patch) | |
tree | 06fb484a8aae083f299694b32ed1b301b5e690c7 /settings | |
parent | 6f7a542590f0f4c6629a43d2571b61d2a5a4c2aa (diff) | |
download | ixfce4-power-manager-553ff3cf76706c3ca170a94f0ec0d2fd737f2796.tar.gz |
Settings: Don't be unique
We don't want the single app logic for settings because it can be
a normal dialog and plugged into the settings manager at the same
time.
Diffstat (limited to 'settings')
-rw-r--r-- | settings/xfpm-settings-app.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/xfpm-settings-app.c b/settings/xfpm-settings-app.c index c2a9490d..da31410d 100644 --- a/settings/xfpm-settings-app.c +++ b/settings/xfpm-settings-app.c @@ -353,6 +353,6 @@ xfpm_settings_app_new (void) { return g_object_new (XFPM_TYPE_SETTINGS_APP, "application-id", "org.xfce.PowerManager.Settings", - "flags", G_APPLICATION_FLAGS_NONE, + "flags", G_APPLICATION_NON_UNIQUE, NULL); } |