From 5d84589e420475110110f3b26e0917c56910a8ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Tue, 19 Jan 2016 10:45:12 +0100 Subject: [PATCH] Fix build with tools=no Fixes #3384. --- scene/main/viewport.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scene/main/viewport.cpp b/scene/main/viewport.cpp index eab62c0dcb..f21142c739 100644 --- a/scene/main/viewport.cpp +++ b/scene/main/viewport.cpp @@ -1279,9 +1279,11 @@ void Viewport::_vp_input(const InputEvent& p_ev) { if (disable_input) return; +#ifdef TOOLS_ENABLED if (get_tree()->is_editor_hint() && get_tree()->get_edited_scene_root()->is_a_parent_of(this)) { return; } +#endif if (parent_control && !parent_control->is_visible()) return; @@ -1304,9 +1306,11 @@ void Viewport::_vp_unhandled_input(const InputEvent& p_ev) { if (disable_input) return; +#ifdef TOOLS_ENABLED if (get_tree()->is_editor_hint() && get_tree()->get_edited_scene_root()->is_a_parent_of(this)) { return; } +#endif if (parent_control && !parent_control->is_visible()) return;