From 7f6c415bfcac32ccdb7bd661f3039ba23d454a26 Mon Sep 17 00:00:00 2001 From: EvanR Date: Fri, 12 Dec 2008 23:41:52 -0600 Subject: [PATCH] Fixed note-sticks-if-pause-while-playing bug. Simply does all_notes_off when you pause. --- src/uihelper.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/uihelper.cpp b/src/uihelper.cpp index ff28257..6449cee 100644 --- a/src/uihelper.cpp +++ b/src/uihelper.cpp @@ -76,6 +76,7 @@ void press_play(){ } else{ pause_backend(); + all_notes_off(); ui->play_button->label("@>"); } } -- 2.11.4.GIT