From e1bd2a9398be924ed3c04f13cb7868f4e71216b8 Mon Sep 17 00:00:00 2001 From: "Mr.k" Date: Sun, 31 Mar 2024 20:11:28 +0300 Subject: [PATCH] Fix Search Box Not Showing Apps/Tweaks Checkboxes When typing out Capital-Letters (#1770) --- scripts/main.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/main.ps1 b/scripts/main.ps1 index 4a722022..38007969 100644 --- a/scripts/main.ps1 +++ b/scripts/main.ps1 @@ -381,7 +381,7 @@ $sync["CheckboxFilter"].Add_TextChanged({ continue } - $textToSearch = $sync.CheckboxFilter.Text + $textToSearch = $sync.CheckboxFilter.Text.ToLower() $checkBoxName = $CheckBox.Key $textBlockName = $checkBoxName + "Link"