Browse Source

removed this fix, which brought more problems than solutions

Juan Linietsky 9 years ago
parent
commit
3a3ce982b0
1 changed files with 2 additions and 2 deletions
  1. 2 2
      scene/gui/control.cpp

+ 2 - 2
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();
 
 }