13
0

when checking for an existing marker before adding one, use the intended flags

This commit is contained in:
Paul Davis 2024-06-07 22:19:37 -06:00
parent 0a01acc86a
commit 9061657940

View File

@ -2354,7 +2354,7 @@ Editor::add_location_mark_with_flag (timepos_t const & where, Location::Flags fl
return;
}
if (_session->locations()->mark_at (where, timecnt_t (1))) {
if (_session->locations()->mark_at (where, timecnt_t (1), flags)) {
return;
}