summaryrefslogtreecommitdiff
path: root/src/main.vala
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff.email>2023-08-17 17:10:12 +0200
committerJörg Frings-Fürst <debian@jff.email>2023-08-17 17:10:12 +0200
commit008bc99860fd353a5da5d06e6be5937f4a358aed (patch)
treed50b38f704b90b83895a21fd610bcf78c31b2cc9 /src/main.vala
parent4ec8ba6ace7234ddc24a7d362a34d9055a83812c (diff)
parent7eef6a59ba38582bed5d459974211eb1f53e1f5d (diff)
Merge branch 'release/debian/0.32.2-1'debian/0.32.2-1
Diffstat (limited to 'src/main.vala')
-rw-r--r--src/main.vala7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/main.vala b/src/main.vala
index cdc9b27..32e3d83 100644
--- a/src/main.vala
+++ b/src/main.vala
@@ -410,7 +410,12 @@ void main(string[] args) {
window.set_title (_("Choose Shotwell's profile"));
var browser = new Shotwell.ProfileBrowser();
browser.profile_activated.connect((profile) => {
- CommandlineOptions.profile = profile;
+ if (profile.id != Shotwell.Profile.SYSTEM) {
+ CommandlineOptions.profile = profile.name;
+ CommandlineOptions.data_dir = profile.data_dir;
+ } else {
+ CommandlineOptions.profile = null;
+ }
window.response(Gtk.ResponseType.OK);
});
window.get_content_area().add(browser);