summaryrefslogtreecommitdiff
path: root/gtk2_ardour/note_select_dialog.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-10-18 17:26:25 +0200
committerRobin Gareus <robin@gareus.org>2019-10-18 22:56:46 +0200
commit19e4f47b4bd968be6471aa22f196bced33296568 (patch)
tree307865f945c777043c1d6e5eb5f49d96641b4c55 /gtk2_ardour/note_select_dialog.cc
parent148a9682be3fcf1c83c738287f875c9c629edbd1 (diff)
Cont'd work on Virtual-keyboard
* allow gtk_pianokeyboard to respond to y-axis click position and include MIDI velocity with note-on signal * add configuration settings to virual-keyboard min/max velocity, keyboard-layout * add a CC7 controller knob
Diffstat (limited to 'gtk2_ardour/note_select_dialog.cc')
-rw-r--r--gtk2_ardour/note_select_dialog.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/note_select_dialog.cc b/gtk2_ardour/note_select_dialog.cc
index 51198da98e..3a9dfa35e7 100644
--- a/gtk2_ardour/note_select_dialog.cc
+++ b/gtk2_ardour/note_select_dialog.cc
@@ -24,7 +24,7 @@
#include "pbd/i18n.h"
static void
-_note_on_event_handler(GtkWidget* /*widget*/, int note, gpointer arg)
+_note_on_event_handler(GtkWidget* /*widget*/, int note, int, gpointer arg)
{
((NoteSelectDialog*)arg)->note_on_event_handler(note);
}