File denemo-OBS.patch of Package denemo
diff -up denemo-2.6.0/src/ui/staffpropdialog.c.orig denemo-2.6.0/src/ui/staffpropdialog.c
--- denemo-2.6.0/src/ui/staffpropdialog.c.orig 2022-03-11 13:15:53.621207949 +0100
+++ denemo-2.6.0/src/ui/staffpropdialog.c 2022-03-12 10:58:43.509243313 +0100
@@ -320,7 +320,7 @@ static gint check_for_channel_conflicts
gint midi_prognum = staffstruct->midi_prognum;
gint staffnum = 1;
GList *curstaff = si->thescore;
- for (curstaff;curstaff;curstaff=curstaff->next, staffnum++)
+ for (curstaff;curstaff=curstaff->next; staffnum++)
{
DenemoStaff *thisstaff = (DenemoStaff *)curstaff->data;
if (thisstaff == staffstruct)
diff -up denemo-2.6.0/src/ui/virtualkeyboard.c.orig denemo-2.6.0/src/ui/virtualkeyboard.c
--- denemo-2.6.0/src/ui/virtualkeyboard.c.orig 2022-03-11 13:15:53.621207949 +0100
+++ denemo-2.6.0/src/ui/virtualkeyboard.c 2022-03-12 11:15:14.575445178 +0100
@@ -65,7 +65,7 @@ static gboolean noteoff (GtkWidget *widg
handle_midi_event (buf);
//else
// process_midi_event (buf);
- //return TRUE;
+ return TRUE;
}