From 5ee94f4954f6e4b49eabeafd6a9bd6ee925f395d Mon Sep 17 00:00:00 2001 From: Gustavo Noronha Silva Date: Fri, 3 May 2013 09:37:11 -0700 Subject: Allow running a regular standalone instance with a different profile Adds a new standalone shell mode and removes restrictions on using --profile in a non-private, non-incognito instance of the browser. Useful for debugging or improving features that rely on being in a regular session, such as password and session saving/restoring. https://bugzilla.gnome.org/show_bug.cgi?id=699602 --- lib/ephy-file-helpers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/ephy-file-helpers.c b/lib/ephy-file-helpers.c index a55d45389..fd4af3898 100644 --- a/lib/ephy-file-helpers.c +++ b/lib/ephy-file-helpers.c @@ -319,7 +319,7 @@ ephy_file_helpers_init (const char *profile_dir, private_profile = flags & EPHY_FILE_HELPERS_PRIVATE_PROFILE; steal_data_from_profile = flags & EPHY_FILE_HELPERS_STEAL_DATA; - if (private_profile && profile_dir != NULL && !steal_data_from_profile) + if (profile_dir != NULL && !steal_data_from_profile) { dot_dir = g_strdup (profile_dir); } -- cgit