Explorar o código

Reversed timeline zoom slider
Fixes #37409

(cherry picked from commit 3f23e1d600b3bae6a0c78c141b53e6283c953dfa)

janglee %!s(int64=5) %!d(string=hai) anos
pai
achega
f10d2affb0
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      editor/animation_track_editor.cpp

+ 1 - 1
editor/animation_track_editor.cpp

@@ -1402,7 +1402,7 @@ void AnimationTimelineEdit::_zoom_changed(double) {
 
 float AnimationTimelineEdit::get_zoom_scale() const {
 
-	float zv = zoom->get_value();
+	float zv = zoom->get_max() - zoom->get_value();
 	if (zv < 1) {
 		zv = 1.0 - zv;
 		return Math::pow(1.0f + zv, 8.0f) * 100;