Merge branch 'dev' of github.com:lite-xl/lite-xl into process-refactor

This commit is contained in:
takase1121 2021-07-07 14:44:51 +08:00
commit b8b41b7fa8
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@ -10,3 +10,4 @@ subprojects/reproc
lite
error.txt
.ccls-cache
compile_commands.json

View File

@ -18,7 +18,7 @@ end
function View:move_towards(t, k, dest, rate)
if type(t) ~= "table" then
return self:move_towards(self, t, k, dest, rate)
return self:move_towards(t, k, dest, rate)
end
local val = t[k]
if not config.transitions or math.abs(val - dest) < 0.5 then