From af971680f533726eee05365968a526919dd98405 Mon Sep 17 00:00:00 2001 From: tildearrow Date: Sat, 28 Oct 2023 18:47:53 -0500 Subject: [PATCH] GUI: play from start should disable repeat pattern --- src/gui/doAction.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/doAction.cpp b/src/gui/doAction.cpp index 69b24947d..a1d3c81be 100644 --- a/src/gui/doAction.cpp +++ b/src/gui/doAction.cpp @@ -97,6 +97,7 @@ void FurnaceGUI::doAction(int what) { if (!e->isPlaying()) { play(); } + e->setRepeatPattern(false); break; case GUI_ACTION_PLAY_REPEAT: play();