Browse Source

Fix build after merge of #63479

Rémi Verschelde 3 years ago
parent
commit
c6fd311da0
1 changed files with 3 additions and 3 deletions
  1. 3 3
      scene/2d/navigation_link_2d.cpp

+ 3 - 3
scene/2d/navigation_link_2d.cpp

@@ -148,7 +148,7 @@ void NavigationLink2D::set_enabled(bool p_enabled) {
 
 #ifdef DEBUG_ENABLED
 	if (Engine::get_singleton()->is_editor_hint() || NavigationServer2D::get_singleton()->get_debug_enabled()) {
-		update();
+		queue_redraw();
 	}
 #endif // DEBUG_ENABLED
 }
@@ -213,7 +213,7 @@ void NavigationLink2D::set_start_location(Vector2 p_location) {
 
 #ifdef DEBUG_ENABLED
 	if (Engine::get_singleton()->is_editor_hint() || NavigationServer2D::get_singleton()->get_debug_enabled()) {
-		update();
+		queue_redraw();
 	}
 #endif // DEBUG_ENABLED
 }
@@ -236,7 +236,7 @@ void NavigationLink2D::set_end_location(Vector2 p_location) {
 
 #ifdef DEBUG_ENABLED
 	if (Engine::get_singleton()->is_editor_hint() || NavigationServer2D::get_singleton()->get_debug_enabled()) {
-		update();
+		queue_redraw();
 	}
 #endif // DEBUG_ENABLED
 }