mirror of
https://github.com/j1g5awi/krunner-vscode.git
synced 2024-11-21 21:39:30 +00:00
🐛 ignore case when querying
This commit is contained in:
parent
7c6bc0c063
commit
123344a875
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ class Runner(dbus.service.Object):
|
|||
{"subtext": path},
|
||||
)
|
||||
for path in get_path_list()
|
||||
if query in path
|
||||
if query.lower() in path.lower()
|
||||
]
|
||||
|
||||
@dbus.service.method(iface, out_signature="a(sss)")
|
||||
|
|
Loading…
Reference in a new issue