Give MIDI velocity text its own colour (from ccherret).

git-svn-id: svn://localhost/ardour2/branches/3.0@3867 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
David Robillard 2008-10-05 04:06:26 +00:00
parent eb919af9a5
commit 4c6ec2a5a3
3 changed files with 3 additions and 1 deletions

View file

@ -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);