This commit is contained in:
Ksaper 2023-02-05 02:20:23 +02:00
parent 6f1198e75d
commit d134719347
1 changed files with 3 additions and 3 deletions

View File

@ -978,9 +978,6 @@ local function new(args)
ret._private.pages_count = 0
ret._private.current_page = 1
generate_apps(ret)
reset(ret)
if ret.rubato and ret.rubato.x then
ret.rubato.x:subscribe(function(pos)
ret._private.widget.x = pos
@ -1025,6 +1022,9 @@ local function new(args)
end})
end)
generate_apps(ret)
reset(ret)
return ret
end