Properly set xrun marker flags (#8952)

This commit is contained in:
Robin Gareus 2023-06-04 16:48:38 +02:00
parent d6144ab8cf
commit 175f3c2405
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ void
ARDOUR_UI::create_xrun_marker (samplepos_t where)
{
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);
}
}