Refactor draggable initialization to remove cleanup

Removed cleanup parameter from draggable initialization.
This commit is contained in:
sindri 2026-03-03 12:49:26 +01:00 committed by GitHub
parent cf51d6da77
commit babdeed441
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -23,7 +23,7 @@ local changed = require "./changed"
local timeout, update_timeouts = require "./timeout"()
local flags = require "./flags"
local draggableFactory = require "./draggable"
local draggable = draggableFactory(action, cleanup)
local draggable = draggableFactory(action)
local toggle = require "./toggle"
local dropdown = require "./dropdown"
local tweenFactory = require "./tween"