From 97495a19da4927e16ace07be58665973f2b91ce7 Mon Sep 17 00:00:00 2001 From: Emmanouil Papadeas <35376950+OverloadedOrama@users.noreply.github.com> Date: Fri, 13 Dec 2024 17:16:22 +0200 Subject: [PATCH] Update audio cel buttons when changing the audio of the layer --- 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 35ec7853b..b6af614f6 100644 --- a/src/UI/Timeline/CelButton.gd +++ b/src/UI/Timeline/CelButton.gd @@ -36,6 +36,7 @@ func _ready() -> void: _is_playing_audio() Global.cel_switched.connect(_is_playing_audio) Global.current_project.fps_changed.connect(_is_playing_audio) + Global.current_project.layers[layer].audio_changed.connect(_is_playing_audio) Global.current_project.layers[layer].playback_frame_changed.connect(_is_playing_audio)