Open `LogView` in correct `Node`
Using `get_active_node` might result in a locked `Node`; calling `add_view` on that `Node` throws an error. `get_active_node_default` always returns an unlocked `Node`.
This commit is contained in:
parent
94abf66444
commit
0ca0e36009
|
@ -149,7 +149,7 @@ command.add(nil, {
|
||||||
end,
|
end,
|
||||||
|
|
||||||
["core:open-log"] = function()
|
["core:open-log"] = function()
|
||||||
local node = core.root_view:get_active_node()
|
local node = core.root_view:get_active_node_default()
|
||||||
node:add_view(LogView())
|
node:add_view(LogView())
|
||||||
end,
|
end,
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue