fix: fix toggle entry mistake

This commit is contained in:
JuanZoran 2023-03-29 09:19:14 +08:00
parent 5b4ec8ea4e
commit f11cee0b5d

View File

@ -133,6 +133,7 @@ function M:wait()
width = opts.width, width = opts.width,
} }
self.waitting = true
local cur = 0 local cur = 0
local pr = util.node.prompt local pr = util.node.prompt
local it = util.node.item local it = util.node.item
@ -189,7 +190,7 @@ end
---@param data TransData ---@param data TransData
---@overload fun(result:TransResult) ---@overload fun(result:TransResult)
function M:process(data) function M:process(data)
if self.window and self.window:is_valid() then if not self.waitting and self.window and self.window:is_valid() then
self:execute 'toggle_entry' self:execute 'toggle_entry'
return return
end end