diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-09-26 12:33:40 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-09-26 12:33:40 +0100 |
| commit | f68a5f1ddd60ade2ed9a68d180ecf553e94b853f (patch) | |
| tree | a1eaa3823b76830559e3e8f7803c000dde8747f1 /src/wx/timeline.cc | |
| parent | 98ca07e59feac950838412bfa7e5c2e3ddd71d7e (diff) | |
Fix multi-select in the timeline (#954).
Diffstat (limited to 'src/wx/timeline.cc')
| -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 30c2dbddc..f93953737 100644 --- a/src/wx/timeline.cc +++ b/src/wx/timeline.cc @@ -383,9 +383,9 @@ Timeline::left_up (wxMouseEvent& ev) if (_down_view) { _down_view->content()->set_change_signals_frequent (false); - _content_panel->set_selection (_down_view->content ()); } + _content_panel->set_selection (selected_content ()); set_position_from_event (ev); /* Clear up up the stuff we don't do during drag */ |
