[Summary] Removed "!" and "*" in region name if region is muted and doesn't match session sample rate

[Feature Reviewed] AMishyn
[Reviewed] YPozdnyakov
This commit is contained in:
Nikolay 2015-01-23 17:16:31 +02:00
parent 0bc1a7cefd
commit 227475d284
2 changed files with 0 additions and 12 deletions

View file

@ -332,14 +332,6 @@ AudioRegionView::region_renamed ()
{
std::string str = RegionView::make_name ();
if (audio_region()->speed_mismatch (trackview.session()->frame_rate())) {
str = string ("*") + str;
}
if (_region->muted()) {
str = string ("!") + str;
}
set_item_name (str, this);
set_name_text (str);
}

View file

@ -594,10 +594,6 @@ RegionView::make_name () const
str = _region->name();
}
if (_region->muted()) {
str = string ("!") + str;
}
return str;
}