diff options
author | Juan Linietsky <reduzio@gmail.com> | 2016-01-10 00:26:35 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2016-01-10 00:26:35 -0300 |
commit | 3a3ce982b0157c21b4976a347d4c1c254093970f (patch) | |
tree | 8ff6a0895eabeb6838bd6c2ba57a0df65168de5c /scene/gui | |
parent | c9852501a4e1c92dafb35f81f337cb653f8bf501 (diff) |
removed this fix, which brought more problems than solutions
Diffstat (limited to 'scene/gui')
-rw-r--r-- | scene/gui/control.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/gui/control.cpp b/scene/gui/control.cpp index 34864d68ec..5a8ecfeffe 100644 --- a/scene/gui/control.cpp +++ b/scene/gui/control.cpp @@ -923,7 +923,7 @@ void Control::_window_show_tooltip() { void Control::_window_call_input(Control *p_control,const InputEvent& p_input) { - _block(); +// _block(); while(p_control) { @@ -941,7 +941,7 @@ void Control::_window_call_input(Control *p_control,const InputEvent& p_input) { p_control=p_control->data.parent; } - _unblock(); + //_unblock(); } |