From 1f25e4f467d4d3ebe0faf72fd2fc0665b1f5455f Mon Sep 17 00:00:00 2001 From: tildearrow Date: Sat, 12 Feb 2022 20:58:39 -0500 Subject: [PATCH] GUI: fix paste not pasting release notes --- src/gui/gui.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index b5382ad0c..f99d68ed5 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -234,6 +234,16 @@ bool FurnaceGUI::decodeNote(const char* what, short& note, short& octave) { octave=0; return true; } + if (strcmp(what,"===")==0) { + note=101; + octave=0; + return true; + } + if (strcmp(what,"REL")==0) { + note=102; + octave=0; + return true; + } for (int i=0; i<180; i++) { if (strcmp(what,noteNames[i])==0) { if ((i%12)==0) {