mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-23 23:17:46 +01:00
[Summary] Fixing the bug when packaged Tracks crashes opening session with Tuvalu letters.
This commit is contained in:
parent
955177c7c3
commit
c68a135910
1 changed files with 1 additions and 1 deletions
|
|
@ -1147,7 +1147,7 @@ MixerStrip::update_io_button (boost::shared_ptr<ARDOUR::Route> route, bool for_i
|
|||
string& connection_name (*i);
|
||||
|
||||
if (io_connection_count == 0) {
|
||||
tooltip << endl << Glib::Markup::escape_text(port->name().substr(port->name().find("/") + 1)) << " -> " << Glib::Markup::escape_text(connection_name);
|
||||
tooltip << endl << std::string (Glib::Markup::escape_text(port->name().substr(port->name().find("/") + 1))) << " -> " << std::string (Glib::Markup::escape_text(connection_name));
|
||||
} else {
|
||||
tooltip << ", " << std::string (Glib::Markup::escape_text(connection_name));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue