mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-05 13:15:44 +01:00
[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:
parent
0bc1a7cefd
commit
227475d284
2 changed files with 0 additions and 12 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -594,10 +594,6 @@ RegionView::make_name () const
|
|||
str = _region->name();
|
||||
}
|
||||
|
||||
if (_region->muted()) {
|
||||
str = string ("!") + str;
|
||||
}
|
||||
|
||||
return str;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue