More consistent verbose cursor label style for PC flags.

git-svn-id: svn://localhost/ardour2/branches/3.0@13928 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
David Robillard 2013-01-20 09:00:53 +00:00
parent 4e6d0c9e61
commit 7f769b06f0
1 changed files with 3 additions and 3 deletions

View File

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