Ver código fonte

Fixed jitter when scrolling up

Paulb23 8 anos atrás
pai
commit
93f6fbd7b2
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      scene/gui/text_edit.cpp

+ 1 - 1
scene/gui/text_edit.cpp

@@ -430,7 +430,7 @@ void TextEdit::_notification(int p_what) {
 				double dist = sqrt(target_y * target_y);
 				double dist = sqrt(target_y * target_y);
 				double vel = ((target_y / dist) * v_scroll_speed) * get_fixed_process_delta_time();
 				double vel = ((target_y / dist) * v_scroll_speed) * get_fixed_process_delta_time();
 
 
-				if (vel >= dist) {
+				if (Math::abs(vel) >= dist) {
 					v_scroll->set_value(target_v_scroll);
 					v_scroll->set_value(target_v_scroll);
 					scrolling = false;
 					scrolling = false;
 					set_fixed_process(false);
 					set_fixed_process(false);