diff options
author | Aylur <[email protected]> | 2024-09-21 19:06:08 +0200 |
---|---|---|
committer | Aylur <[email protected]> | 2024-09-21 19:07:29 +0200 |
commit | ad8d3409fec4d7d4fd728f364a139947ff1185e3 (patch) | |
tree | 3e4ac867c3e1f543fec2f045a18b9d86c990a94f /core/lua | |
parent | a819c41afcdde7b4bbe0ecf04dc8a84c87cc3c75 (diff) |
fix(Variable): remove explicit run_dispose
let gc collect them
Diffstat (limited to 'core/lua')
-rw-r--r-- | core/lua/astal/variable.lua | 3 |
1 files changed, 0 insertions, 3 deletions
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 |