Add a label to the add midi port button in the options editor. Give the Add MIDI port dialog a slightly friendlier name.

git-svn-id: svn://localhost/ardour2/trunk@2515 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington
2007-10-05 12:23:17 +00:00
parent 811426b5b3
commit 77459de981
2 changed files with 2 additions and 1 deletions

View File

@@ -18,7 +18,7 @@ using namespace sigc;
static const char* mode_strings[] = { "duplex", "output", "input", (char*) 0 };
MidiPortDialog::MidiPortDialog ()
: ArdourDialog ("midi_port_dialog"),
: ArdourDialog ("Add MIDI port"),
port_label (_("Port name"))
{

View File

@@ -387,6 +387,7 @@ OptionEditor::setup_midi_options ()
hbox->pack_start (midi_port_table, true, false);
midi_packer.pack_start (*hbox, false, false);
add_midi_port_button.set_label ("Add MIDI port");
midi_packer.pack_start (add_midi_port_button, false, false);
hbox = manage (new HBox);