mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 00:34:59 +01:00
Insert/Redirect refactoring, towards better MIDI support in mixer strip, and
http://ardour.org/node/1043 style things. git-svn-id: svn://localhost/ardour2/trunk@2027 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
05184ed52f
commit
49ee64ada7
77 changed files with 2052 additions and 1948 deletions
|
|
@ -817,7 +817,7 @@ RouteUI::route_rename ()
|
|||
case Gtk::RESPONSE_ACCEPT:
|
||||
name_prompter.get_result (result);
|
||||
if (result.length()) {
|
||||
_route->set_name (result, this);
|
||||
_route->set_name (result);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
@ -827,9 +827,9 @@ RouteUI::route_rename ()
|
|||
}
|
||||
|
||||
void
|
||||
RouteUI::name_changed (void *src)
|
||||
RouteUI::name_changed ()
|
||||
{
|
||||
ENSURE_GUI_THREAD(bind (mem_fun (*this, &RouteUI::name_changed), src));
|
||||
ENSURE_GUI_THREAD(sigc::mem_fun(*this, &RouteUI::name_changed));
|
||||
|
||||
name_label.set_text (_route->name());
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue