mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 07:45:00 +01:00
Fix typo (missing quote) in patch-change window title
This commit is contained in:
parent
e6f2d77605
commit
1a5887865c
1 changed files with 2 additions and 2 deletions
|
|
@ -560,7 +560,7 @@ PatchChangeWidget::program (uint8_t chn) const
|
||||||
/* ***************************************************************************/
|
/* ***************************************************************************/
|
||||||
|
|
||||||
PatchChangeGridDialog::PatchChangeGridDialog (boost::shared_ptr<ARDOUR::Route> r)
|
PatchChangeGridDialog::PatchChangeGridDialog (boost::shared_ptr<ARDOUR::Route> r)
|
||||||
: ArdourDialog (string_compose (_("Select Patch for '%1"), r->name()), false, false)
|
: ArdourDialog (string_compose (_("Select Patch for \"%1\""), r->name()), false, false)
|
||||||
, w (r)
|
, w (r)
|
||||||
{
|
{
|
||||||
r->PropertyChanged.connect (_route_connection, invalidator (*this), boost::bind (&PatchChangeGridDialog::route_property_changed, this, _1, boost::weak_ptr<Route>(r)), gui_context());
|
r->PropertyChanged.connect (_route_connection, invalidator (*this), boost::bind (&PatchChangeGridDialog::route_property_changed, this, _1, boost::weak_ptr<Route>(r)), gui_context());
|
||||||
|
|
@ -573,6 +573,6 @@ PatchChangeGridDialog::route_property_changed (const PBD::PropertyChange& what_c
|
||||||
{
|
{
|
||||||
boost::shared_ptr<ARDOUR::Route> r = wr.lock ();
|
boost::shared_ptr<ARDOUR::Route> r = wr.lock ();
|
||||||
if (r && what_changed.contains (ARDOUR::Properties::name)) {
|
if (r && what_changed.contains (ARDOUR::Properties::name)) {
|
||||||
set_title (string_compose (_("Select Patch for '%1"), r->name()));
|
set_title (string_compose (_("Select Patch for \"%1\"'"), r->name()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue