From 0d69983a294bcc78182903f287b67e2e54bb28de Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Thu, 19 Jun 2025 01:14:48 +0200 Subject: [PATCH] Fix comment editor window title --- gtk2_ardour/route_comment_editor.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/route_comment_editor.cc b/gtk2_ardour/route_comment_editor.cc index f1c6d62b9d..3538f3feea 100644 --- a/gtk2_ardour/route_comment_editor.cc +++ b/gtk2_ardour/route_comment_editor.cc @@ -108,7 +108,7 @@ RouteCommentEditor::open (std::shared_ptr r) _route->comment_changed.connect (_connections, invalidator (*this), std::bind (&RouteCommentEditor::comment_changed, this), gui_context ()); _route->DropReferences.connect (_connections, invalidator (*this), std::bind (&RouteCommentEditor::reset, this), gui_context ()); - set_title (string_compose ("%1: %2", _route->name (), _ (": comment editor"))); + set_title (string_compose ("%1: %2", _route->name (), _("Comment Editor"))); _comment_area.get_buffer ()->set_text (_route->comment ()); Gtkmm2ext::container_clear (_vbox, false);