diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-02-15 00:42:22 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-02-15 03:16:16 +0100 |
| commit | c82ea3df77d7b5d341d8ec0e6773eb8029ccb4bc (patch) | |
| tree | f24ef028456ff26e81056fba1e8eae6d3a02df0b | |
| parent | 42a6003535d3153224da33b973bb79662d296e02 (diff) | |
Typo fix.
| -rw-r--r-- | src/wx/timeline.cc | 2 |
1 files changed, 1 insertions, 1 deletions
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<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; } |
