From 7f769b06f08955fefaebaa248d3c678ea0cf3dab Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 20 Jan 2013 09:00:53 +0000 Subject: [PATCH] More consistent verbose cursor label style for PC flags. git-svn-id: svn://localhost/ardour2/branches/3.0@13928 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/midi_region_view.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gtk2_ardour/midi_region_view.cc b/gtk2_ardour/midi_region_view.cc index 542894af81..97e1f14b30 100644 --- a/gtk2_ardour/midi_region_view.cc +++ b/gtk2_ardour/midi_region_view.cc @@ -3174,9 +3174,9 @@ MidiRegionView::patch_entered (ArdourCanvas::CanvasPatchChange* p) { ostringstream s; /* XXX should get patch name if we can */ - s << _("Bank:") << (p->patch()->bank() + MIDI_BP_ZERO) << '\n' - << _("Program:") << ((int) p->patch()->program()) + MIDI_BP_ZERO << '\n' - << _("Channel:") << ((int) p->patch()->channel() + 1); + s << _("Bank ") << (p->patch()->bank() + MIDI_BP_ZERO) << '\n' + << _("Program ") << ((int) p->patch()->program()) + MIDI_BP_ZERO << '\n' + << _("Channel ") << ((int) p->patch()->channel() + 1); show_verbose_cursor (s.str(), 10, 20); p->grab_focus(); }