diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/gjs/src/variable.ts | 1 | ||||
-rw-r--r-- | core/lua/astal/variable.lua | 3 |
2 files changed, 0 insertions, 4 deletions
diff --git a/core/gjs/src/variable.ts b/core/gjs/src/variable.ts index 84f8cc5..8739ef6 100644 --- a/core/gjs/src/variable.ts +++ b/core/gjs/src/variable.ts @@ -101,7 +101,6 @@ class VariableWrapper<T> extends Function { drop() { this.variable.emit("dropped") - idle(() => this.variable.run_dispose()) } onDropped(callback: () => void) { diff --git a/core/lua/astal/variable.lua b/core/lua/astal/variable.lua index da2e894..377b448 100644 --- a/core/lua/astal/variable.lua +++ b/core/lua/astal/variable.lua @@ -124,9 +124,6 @@ end function Variable:drop() self.variable.emit_dropped() - Astal.Time.idle(GObject.Closure(function() - self.variable.run_dispose() - end)) end ---@param callback function |