From: Carl Hetherington Date: Sun, 14 Feb 2021 23:42:22 +0000 (+0100) Subject: Typo fix. X-Git-Tag: v2.15.129~7 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=c82ea3df77d7b5d341d8ec0e6773eb8029ccb4bc Typo fix. --- diff --git a/src/wx/timeline.cc b/src/wx/timeline.cc index 60200d8bb..5a98c829a 100644 --- a/src/wx/timeline.cc +++ b/src/wx/timeline.cc @@ -182,7 +182,7 @@ Timeline::paint_main () list> overlaps; for (auto j: _views) { auto jc = dynamic_pointer_cast (j); - /* No overlap with non-content views, views no different tracks, audio views or non-active views */ + /* No overlap with non-content views, views on different tracks, audio views or non-active views */ if (!ic || !jc || i == j || ic->track() != jc->track() || ic->track().get_value_or(2) >= 2 || !ic->active() || !jc->active()) { continue; }