diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-04-29 22:17:16 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-04-29 22:17:16 +0100 |
| commit | ccc9147af71ea93195b10e0f6de040fff9ae7746 (patch) | |
| tree | ebae0d34625fb4d191baf9ed27c8397f1e9d8494 /src | |
| parent | 362a5e86b25374054cee29168b2423346d18e922 (diff) | |
Hand-apply 2ee558ec90623b570360e8e55c918b5bb37f9aac from master; various snapping fixes.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/timeline.cc | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/src/wx/timeline.cc b/src/wx/timeline.cc index 2c032b8d3..9c70a001e 100644 --- a/src/wx/timeline.cc +++ b/src/wx/timeline.cc @@ -137,7 +137,10 @@ Timeline::playlist_content_changed (int property) if (property == ContentProperty::POSITION) { assign_tracks (); - setup_pixels_per_second (); + if (!_left_down) { + /* Only do this if we are not dragging, as it's confusing otherwise */ + setup_pixels_per_second (); + } Refresh (); } else if (property == AudioContentProperty::AUDIO_MAPPING) { recreate_views (); @@ -286,6 +289,12 @@ Timeline::left_up (wxMouseEvent& ev) } set_position_from_event (ev); + + /* We don't do this during drag, and set_position_from_event above + might not have changed the position, so do it now. + */ + setup_pixels_per_second (); + Refresh (); } void @@ -354,7 +363,7 @@ Timeline::set_position_from_event (wxMouseEvent& ev) if (_snap) { - DCPTime const new_end = new_position + _down_view->content()->length_after_trim (); + DCPTime const new_end = new_position + _down_view->content()->length_after_trim () - 1; /* Signed `distance' to nearest thing (i.e. negative is left on the timeline, positive is right). */ @@ -363,14 +372,14 @@ Timeline::set_position_from_event (wxMouseEvent& ev) /* Find the nearest content edge; this is inefficient */ for (TimelineViewList::iterator i = _views.begin(); i != _views.end(); ++i) { shared_ptr<TimelineContentView> cv = dynamic_pointer_cast<TimelineContentView> (*i); - if (!cv || cv == _down_view) { + if (!cv || cv == _down_view || cv->content() == _down_view->content()) { continue; } maybe_snap (cv->content()->position(), new_position, nearest_distance); - maybe_snap (cv->content()->position(), new_end, nearest_distance); - maybe_snap (cv->content()->end(), new_position, nearest_distance); - maybe_snap (cv->content()->end(), new_end, nearest_distance); + maybe_snap (cv->content()->position(), new_end + 1, nearest_distance); + maybe_snap (cv->content()->end() + 1, new_position, nearest_distance); + maybe_snap (cv->content()->end() + 1, new_end, nearest_distance); } if (nearest_distance) { |
