mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-14 09:26:30 +01:00
[Summary] Fixing the bug. The bug is crashed TRACKS when opening seesions with Toovaloo characters in track names
This commit is contained in:
parent
dcbf64d8f5
commit
c671e10d69
1 changed files with 2 additions and 2 deletions
|
|
@ -1124,10 +1124,10 @@ MixerStrip::update_io_button (boost::shared_ptr<ARDOUR::Route> route, bool for_i
|
|||
|
||||
if (for_input) {
|
||||
io_count = route->n_inputs().n_total();
|
||||
tooltip << string_compose (_("<b>INPUT</b> to %1"), Glib::Markup::escape_text(route->name()));
|
||||
tooltip << string_compose (_("<b>INPUT</b> to %1"), std::string (Glib::Markup::escape_text(route->name())));
|
||||
} else {
|
||||
io_count = route->n_outputs().n_total();
|
||||
tooltip << string_compose (_("<b>OUTPUT</b> from %1"), Glib::Markup::escape_text(route->name()));
|
||||
tooltip << string_compose (_("<b>OUTPUT</b> from %1"), std::string (Glib::Markup::escape_text(route->name())));
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue