Typo fix.
authorCarl Hetherington <cth@carlh.net>
Sun, 14 Feb 2021 23:42:22 +0000 (00:42 +0100)
committerCarl Hetherington <cth@carlh.net>
Mon, 15 Feb 2021 02:16:16 +0000 (03:16 +0100)
src/wx/timeline.cc

index 60200d8bb7edc81ce5977221029429e122047cfd..5a98c829ad8815d3c0cd512c6db09ffd89ebfe72 100644 (file)
@@ -182,7 +182,7 @@ Timeline::paint_main ()
                list<dcpomatic::Rect<int>> overlaps;
                for (auto j: _views) {
                        auto jc = dynamic_pointer_cast<TimelineContentView> (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;
                        }