diff options
author | Michael Catanzaro <mcatanzaro@igalia.com> | 2019-01-04 13:26:28 -0600 |
---|---|---|
committer | Michael Catanzaro <mcatanzaro@posteo.net> | 2019-01-05 17:35:15 +0000 |
commit | a6033653c451cf20d1630a9862adff223079ccb2 (patch) | |
tree | da71fce8a1a39aadfdc37c246e4f77e9339e30af /src/ephy-main.c | |
parent | 197f4d3a0f87468495e47b13f9c1bd05cc51c72e (diff) | |
download | epiphany-a6033653c451cf20d1630a9862adff223079ccb2.tar.gz |
Flip -i and -p in help output
Incognito mode does not use a private instance, so keep the private
instance options together.
At least now it should be clearer what the difference between incognito
mode and private mode is!
Diffstat (limited to 'src/ephy-main.c')
-rw-r--r-- | src/ephy-main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ephy-main.c b/src/ephy-main.c index 603c536bb..877952075 100644 --- a/src/ephy-main.c +++ b/src/ephy-main.c @@ -113,10 +113,10 @@ static const GOptionEntry option_entries[] = N_("Open a new browser window instead of a new tab"), NULL }, { "load-session", 'l', 0, G_OPTION_ARG_FILENAME, &session_filename, N_("Load the given session state file"), N_("FILE") }, - { "private-instance", 'p', 0, G_OPTION_ARG_NONE, &private_instance, - N_("Start a private instance with separate user data"), NULL }, { "incognito-mode", 'i', 0, G_OPTION_ARG_NONE, &incognito_mode, N_("Start an instance with user data read-only"), NULL }, + { "private-instance", 'p', 0, G_OPTION_ARG_NONE, &private_instance, + N_("Start a private instance with separate user data"), NULL }, { "application-mode", 'a', G_OPTION_FLAG_FILENAME | G_OPTION_FLAG_OPTIONAL_ARG, G_OPTION_ARG_CALLBACK, application_mode_cb, N_("Start a private instance in web application mode"), NULL }, |