small changes

This commit is contained in:
2025-12-23 15:10:22 -08:00
parent aa64d18060
commit 7c1e0de4ff
2 changed files with 4 additions and 1 deletions

View File

@@ -170,7 +170,7 @@ local function process()
end
end
for k,v in pairs(apps) do
if (v.filter == nil or v.filter == event[1]) and v ~= focusedapp and event[1] ~= "mouse_click" and event[1] ~= "mouse_up" and event[1] ~= "mouse_drag" and event[1] ~= "mouse_scroll" then
if (v.filter == nil or v.filter == event[1]) and v ~= focusedapp and event[1] ~= "mouse_click" and event[1] ~= "mouse_up" and event[1] ~= "mouse_drag" and event[1] ~= "mouse_scroll" and event[1] ~= "char" and event[1] ~= "key" and event[1] ~= "key_up" then
local success, content = coroutine.resume(v.co,table.unpack(event))
if success then
v.filter = content