mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
Properly set xrun marker flags (#8952)
This commit is contained in:
parent
d6144ab8cf
commit
175f3c2405
1 changed files with 1 additions and 1 deletions
|
|
@ -114,7 +114,7 @@ void
|
||||||
ARDOUR_UI::create_xrun_marker (samplepos_t where)
|
ARDOUR_UI::create_xrun_marker (samplepos_t where)
|
||||||
{
|
{
|
||||||
if (_session) {
|
if (_session) {
|
||||||
Location *location = new Location (*_session, timepos_t (where), timepos_t (where), _("xrun"), Location::IsMark);
|
Location *location = new Location (*_session, timepos_t (where), timepos_t (where), _("xrun"), Location::Flags(Location::IsMark | Location::IsXrun));
|
||||||
_session->locations()->add (location);
|
_session->locations()->add (location);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue