Skip to content

add --select compatibility flag #3589

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 24, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/nemo-main-application.c
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@
geometry_string[0] != 0) {
/* Ignore saved window position if a window with the same
* location is already showing. That way the two windows
* wont appear at the exact same location on the screen.

Check failure on line 220 in src/nemo-main-application.c

View workflow job for this annotation

GitHub Actions / build / build (mint22, linuxmintd/mint22-amd64, Mint 22, true) / Mint 22

wont ==> won't
*/
eel_gtk_window_set_initial_geometry_from_string
(GTK_WINDOW (window),
Expand Down Expand Up @@ -656,6 +656,7 @@
gboolean kill_shell = FALSE;
gboolean no_default_window = FALSE;
gboolean no_desktop_ignored = FALSE;
gboolean select_ignored = FALSE;
gboolean fix_cache = FALSE;
gboolean debug = FALSE;
gchar **remaining = NULL;
Expand All @@ -678,6 +679,8 @@
{ "no-default-window", 'n', 0, G_OPTION_ARG_NONE, &no_default_window,
N_("Only create windows for explicitly specified URIs."), NULL },
{ "no-desktop", '\0', 0, G_OPTION_ARG_NONE, &no_desktop_ignored,
N_("Ignored argument - left for compatibility only."), NULL },
{ "select", 's', 0, G_OPTION_ARG_NONE, &select_ignored,
N_("Ignored argument - left for compatibility only."), NULL },
{ "tabs", 't', 0, G_OPTION_ARG_NONE, &open_in_tabs,
N_("Open URIs in tabs."), NULL },
Expand Down
Loading