Give muted regions cancelled speaker instead of '!'

This commit is contained in:
itmuckel 2022-05-14 18:00:00 +02:00 committed by Robin Gareus
parent 86597d7e1c
commit 13836bde44
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
1 changed files with 2 additions and 2 deletions

View File

@ -785,7 +785,7 @@ RegionView::hide_region_editor()
std::string
RegionView::make_name () const
{
std::string str;
std::string str{};
// XXX nice to have some good icons for this
if (_region->position_time_domain() == Temporal::BeatTime) {
@ -807,7 +807,7 @@ RegionView::make_name () const
}
if (_region->muted()) {
str = string ("!") + str;
str = std::string("\U0001F507") + str; // SPEAKER WITH CANCELLATION STROKE
}
return str;