Skip to content

Commit

Permalink
vn now only progresses with mouse or space/return/kpenter
Browse files Browse the repository at this point in the history
Closes #868
  • Loading branch information
josefnpat committed Sep 9, 2019
1 parent b337e57 commit 92e9406
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/states/client.lua
Expand Up @@ -1254,7 +1254,9 @@ function client:keypressed(key)
end

if self.vn and self.vn:active() then
self.vn:next()
if key == "return" or key == "kpenter" or key == "space" then
self.vn:next()
end
elseif self.windows:isActive() then

else
Expand Down

0 comments on commit 92e9406

Please sign in to comment.