summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorey Berla <corey@berla.me>2023-01-07 10:34:09 -0800
committerCorey Berla <corey@berla.me>2023-01-07 10:59:30 -0800
commit41101e8b4f4d674c6d078cc0cd17ac84f4607cc4 (patch)
tree8f72f864b7c16be03b9be98f90dddb69e5887d01
parent9a7503eb09c47b601e2eca542f5c00ba672029a2 (diff)
downloadnautilus-41101e8b4f4d674c6d078cc0cd17ac84f4607cc4.tar.gz
search-popover: Remove "Any time" option
There's multiple ways of clearing a date filter. "Any time" is just confusing and wastes space
-rw-r--r--src/nautilus-search-popover.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/nautilus-search-popover.c b/src/nautilus-search-popover.c
index 9dff0b0ac..6a2f95513 100644
--- a/src/nautilus-search-popover.c
+++ b/src/nautilus-search-popover.c
@@ -494,10 +494,6 @@ fill_fuzzy_dates_listbox (NautilusSearchPopover *popover)
now = g_date_time_new_now_local ();
max_days = SEARCH_FILTER_MAX_YEARS * 365;
- /* Add the no date filter element first */
- row = create_row_for_label (_("Any time"), TRUE);
- gtk_list_box_insert (GTK_LIST_BOX (popover->dates_listbox), row, -1);
-
/* This is a tricky loop. The main intention here is that each
* timeslice (day, week, month) have 2 or 3 entries.
*