Skip to content

Commit

Permalink
chore: speed up loading spinner
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanFlurry committed Jul 26, 2024
1 parent 849f56d commit add6ead
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/rivet/devtools/dock/elements/loading_button.gd
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func _set_loading(value) -> void:
get_theme_icon("Progress9", "EditorIcons"),
]
for idx in icons.size():
_tween.tween_property(self, "icon", icons[idx], 0 if idx == 0 else 1)
_tween.tween_property(self, "icon", icons[idx], 0 if idx == 0 else 0.1)
_tween.set_loops()
else:
icon = null

0 comments on commit add6ead

Please sign in to comment.