From 06289781e46bd99dcad4b8fb8713c93a516d7e2a Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Mon, 10 Mar 2014 19:12:50 +0100 Subject: [PATCH] AutomationEditor: update pause icon manually As we have a special semantic for automation pattern playback (i.e. we don't playback the pattern itself but its container component like Song Editor, Piano Roll etc.). Closes #292. --- src/gui/AutomationEditor.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gui/AutomationEditor.cpp b/src/gui/AutomationEditor.cpp index cdbbfc734..d6810eee2 100644 --- a/src/gui/AutomationEditor.cpp +++ b/src/gui/AutomationEditor.cpp @@ -1907,6 +1907,8 @@ void AutomationEditor::play() engine::getSong()->togglePause(); } } + + setPauseIcon( engine::getSong()->isPlaying() ); }