Skip to content

Commit e21b284

Browse files
authored
add --select compatibility flag (#3589)
1 parent 44770f8 commit e21b284

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/nemo-main-application.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -656,6 +656,7 @@ nemo_main_application_local_command_line (GApplication *application,
656656
gboolean kill_shell = FALSE;
657657
gboolean no_default_window = FALSE;
658658
gboolean no_desktop_ignored = FALSE;
659+
gboolean select_ignored = FALSE;
659660
gboolean fix_cache = FALSE;
660661
gboolean debug = FALSE;
661662
gchar **remaining = NULL;
@@ -678,6 +679,8 @@ nemo_main_application_local_command_line (GApplication *application,
678679
{ "no-default-window", 'n', 0, G_OPTION_ARG_NONE, &no_default_window,
679680
N_("Only create windows for explicitly specified URIs."), NULL },
680681
{ "no-desktop", '\0', 0, G_OPTION_ARG_NONE, &no_desktop_ignored,
682+
N_("Ignored argument - left for compatibility only."), NULL },
683+
{ "select", 's', 0, G_OPTION_ARG_NONE, &select_ignored,
681684
N_("Ignored argument - left for compatibility only."), NULL },
682685
{ "tabs", 't', 0, G_OPTION_ARG_NONE, &open_in_tabs,
683686
N_("Open URIs in tabs."), NULL },

0 commit comments

Comments
 (0)