diff options
author | Kevin <[email protected]> | 2024-09-28 16:32:04 -0300 |
---|---|---|
committer | Kevin <[email protected]> | 2024-09-28 16:32:04 -0300 |
commit | df57a20f383d2364fd79149de50f3360dde8443b (patch) | |
tree | 3de014576633b3a394abd21a148650128c87d79c /core/lua | |
parent | 9e63fe3819b19555c39c56a9d098c0ee35fbaf3d (diff) |
lua: fix tpyo
Diffstat (limited to 'core/lua')
-rw-r--r-- | core/lua/astal/widget.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/lua/astal/widget.lua b/core/lua/astal/widget.lua index f525f4e..89cc4d5 100644 --- a/core/lua/astal/widget.lua +++ b/core/lua/astal/widget.lua @@ -61,7 +61,7 @@ local function set_children(parent, children) parent:remove(rm) end elseif Gtk.Container:is_type_of(parent) and - !(Astal.Box:is_type_of(parent) or + not (Astal.Box:is_type_of(parent) or Astal.Stack:is_type_of(parent)) then for _, ch in ipairs(parent:get_children()) do parent:remove(ch) |