summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-05-18 11:41:53 +0200
committerCarl Hetherington <cth@carlh.net>2024-05-18 11:59:54 +0200
commitc9f269b88bfcb5ffbf88735a621dedc3cbaf4d49 (patch)
tree1ca7a859bb6a96cbb62a89f7a01acbac08a9e1c8 /src
parentd8fc4fd042a3ae62ab1b258dbfa032bc7a933dc2 (diff)
Cleanup: missing word in comment.
Diffstat (limited to 'src')
-rw-r--r--src/wx/text_view.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/text_view.cc b/src/wx/text_view.cc
index 7f60e79f0..bde7b09e9 100644
--- a/src/wx/text_view.cc
+++ b/src/wx/text_view.cc
@@ -175,6 +175,6 @@ TextView::subtitle_selected (wxListEvent& ev)
DCPOMATIC_ASSERT (ev.GetIndex() < int(_start_times.size()));
auto lc = _content.lock ();
DCPOMATIC_ASSERT (lc);
- /* Add on a frame here to work around any rounding errors and make sure land in the subtitle */
+ /* Add on a frame here to work around any rounding errors and make sure we land in the subtitle */
_film_viewer.seek(lc, _start_times[ev.GetIndex()] + ContentTime::from_frames(1, _frc->source), true);
}