diff --git a/editor/plugins/canvas_item_editor_plugin.cpp b/editor/plugins/canvas_item_editor_plugin.cpp index f5d9da195a..a10a367db8 100644 --- a/editor/plugins/canvas_item_editor_plugin.cpp +++ b/editor/plugins/canvas_item_editor_plugin.cpp @@ -1390,7 +1390,12 @@ void CanvasItemEditor::_viewport_gui_input(const Ref &p_event) { while ((n && n != scene && n->get_owner() != scene) || (n && !n->is_class("CanvasItem"))) { n = n->get_parent(); }; - c = n->cast_to(); + + if (n) { + c = n->cast_to(); + } else { + c = NULL; + } // Select the item additive_selection = b->get_shift();