From 8bf930ffa68ea6b4b55ad0828eb6b382e5ef8b79 Mon Sep 17 00:00:00 2001 From: Rudxain <76864299+Rudxain@users.noreply.github.com> Date: Sun, 19 Jan 2025 22:38:21 -0400 Subject: [PATCH] feat(ui): clearer "All" filters --- src/core/uad_lists.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/uad_lists.rs b/src/core/uad_lists.rs index 9a3cdd5..1d2b9c7 100644 --- a/src/core/uad_lists.rs +++ b/src/core/uad_lists.rs @@ -112,7 +112,7 @@ impl std::fmt::Display for PackageState { f, "{}", match self { - Self::All => "All packages", + Self::All => "All states", Self::Enabled => "Enabled", Self::Uninstalled => "Uninstalled", Self::Disabled => "Disabled", @@ -177,7 +177,7 @@ impl std::fmt::Display for Removal { f, "{}", match self { - Self::All => "All", + Self::All => "All removals", Self::Recommended => "Recommended", Self::Advanced => "Advanced", Self::Expert => "Expert",