Fix typo (missing quote) in patch-change window title
authorRobin Gareus <robin@gareus.org>
Mon, 13 Nov 2017 22:31:39 +0000 (23:31 +0100)
committerRobin Gareus <robin@gareus.org>
Mon, 13 Nov 2017 22:32:03 +0000 (23:32 +0100)
gtk2_ardour/patch_change_widget.cc

index f82db6a27a699816c5d2ebc655f817ec40e130f4..922f7cd6f78af13e7a7c784679ecf2ca786360d3 100644 (file)
@@ -560,7 +560,7 @@ PatchChangeWidget::program (uint8_t chn) const
 /* ***************************************************************************/
 
 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)
 {
        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 ();
        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()));
        }
 }