summaryrefslogtreecommitdiff
path: root/gtk2_ardour/canvas-note-event.cc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-10-05 04:06:26 +0000
committerDavid Robillard <d@drobilla.net>2008-10-05 04:06:26 +0000
commit4c6ec2a5a39d0b283d37f083ae156df2d4134876 (patch)
treec25a138c751f646b2c2dfaf1dac9840577e2fff8 /gtk2_ardour/canvas-note-event.cc
parenteb919af9a573460cc28957ead9e9ed981e7ae985 (diff)
Give MIDI velocity text its own colour (from ccherret).
git-svn-id: svn://localhost/ardour2/branches/3.0@3867 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/canvas-note-event.cc')
-rw-r--r--gtk2_ardour/canvas-note-event.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/canvas-note-event.cc b/gtk2_ardour/canvas-note-event.cc
index d744044d50..2ea18315f5 100644
--- a/gtk2_ardour/canvas-note-event.cc
+++ b/gtk2_ardour/canvas-note-event.cc
@@ -76,7 +76,7 @@ CanvasNoteEvent::show_velocity()
velo << int(_note->velocity());
_text->property_text() = velo.str();
_text->property_justification() = Gtk::JUSTIFY_CENTER;
- _text->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_MidiNoteSelectedOutline.get();
+ _text->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_MidiNoteVelocityText.get();
_text->show();
_text->lower_to_bottom();
_text->raise(2);