diff options
Diffstat (limited to 'src/main.vala')
-rw-r--r-- | src/main.vala | 7 |
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); |