From 76eca30e24e6ba199831caaf2bbc29a6e15d0201 Mon Sep 17 00:00:00 2001 From: igor Date: Sun, 18 Jan 2026 09:22:43 -0800 Subject: [PATCH] Search now includes the bundle extension. --- src/SearchViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SearchViewController.swift b/src/SearchViewController.swift index cb38c9c..b0c6f21 100644 --- a/src/SearchViewController.swift +++ b/src/SearchViewController.swift @@ -391,7 +391,7 @@ class SearchViewController: NSViewController, NSTextFieldDelegate, if listIndex >= maxItems { break outerloop } let prog = path.value[i] - if prog.name.lowercased() + if (prog.name.lowercased() + prog.ext) .contains(searchInput.stringValue.lowercased()) { programsList[listIndex].path = prog.path