Check both values returned by Node:get_locked_size

This commit is contained in:
Guldoman
2021-10-16 02:56:01 +02:00
parent 0d2166c9ce
commit ef60b24f63
+4 -2
View File
@@ -112,7 +112,8 @@ for _, dir in ipairs { "left", "right", "up", "down" } do
y = node.position.y + (dir == "up" and -1 or node.size.y + style.divider_size) y = node.position.y + (dir == "up" and -1 or node.size.y + style.divider_size)
end end
local node = core.root_view.root_node:get_child_overlapping_point(x, y) local node = core.root_view.root_node:get_child_overlapping_point(x, y)
if not node:get_locked_size() then local sx, sy = node:get_locked_size()
if not sx and not sy then
core.set_active_view(node.active_view) core.set_active_view(node.active_view)
end end
end end
@@ -120,5 +121,6 @@ end
command.add(function() command.add(function()
local node = core.root_view:get_active_node() local node = core.root_view:get_active_node()
return not node:get_locked_size() local sx, sy = node:get_locked_size()
return not sx and not sy
end, t) end, t)