From 3a7d3410d3fce96bae65c1316999bb5c163b0687 Mon Sep 17 00:00:00 2001 From: Emmanouil Papadeas <35376950+OverloadedOrama@users.noreply.github.com> Date: Mon, 9 Dec 2024 18:55:58 +0200 Subject: [PATCH] Fix adding/removing in-between frames breaking the visual indication of audio cels --- src/UI/Timeline/CelButton.gd | 1 + 1 file changed, 1 insertion(+) diff --git a/src/UI/Timeline/CelButton.gd b/src/UI/Timeline/CelButton.gd index 8cf48a731..b23f2e2f6 100644 --- a/src/UI/Timeline/CelButton.gd +++ b/src/UI/Timeline/CelButton.gd @@ -33,6 +33,7 @@ func _ready() -> void: transparent_checker.visible = false elif cel is AudioCel: _is_playing_audio() + Global.cel_switched.connect(_is_playing_audio) Global.current_project.fps_changed.connect(_is_playing_audio)