summaryrefslogtreecommitdiff
path: root/src/wx/timing_panel.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-07-28 17:53:27 +0100
committerCarl Hetherington <cth@carlh.net>2015-07-29 20:04:36 +0100
commita0d1dd5d91c81ec9907cbc7b890905c463c18f62 (patch)
tree3dc0b2e5b7e3a4e7da7d687c8713e0b461ce2aeb /src/wx/timing_panel.cc
parent2da067ce01a04964dd5d739ea695504517877507 (diff)
Replace Time::frames with Time::frames_round and Time::frames_floor.
I believe both are necessary; doing floor instead of round caused #648.
Diffstat (limited to 'src/wx/timing_panel.cc')
-rw-r--r--src/wx/timing_panel.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/timing_panel.cc b/src/wx/timing_panel.cc
index f92505c33..53e109224 100644
--- a/src/wx/timing_panel.cc
+++ b/src/wx/timing_panel.cc
@@ -296,7 +296,7 @@ TimingPanel::full_length_changed ()
shared_ptr<ImageContent> ic = dynamic_pointer_cast<ImageContent> (*i);
if (ic && ic->still ()) {
int const vfr = _parent->film()->video_frame_rate ();
- ic->set_video_length (_full_length->get (vfr).frames (vfr));
+ ic->set_video_length (_full_length->get (vfr).frames_round (vfr));
}
}
}