diff options
Diffstat (limited to 'src/wx')
| -rw-r--r-- | src/wx/video_panel.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/video_panel.cc b/src/wx/video_panel.cc index a9ef6e02d..8a02dff25 100644 --- a/src/wx/video_panel.cc +++ b/src/wx/video_panel.cc @@ -766,7 +766,7 @@ VideoPanel::left_crop_changed () { _left_changed_last = true; if (_left_right_link->GetValue()) { - for (auto i: _parent->selected_video()) { + for (auto const& i: _parent->selected_video()) { i->video->set_right_crop (i->video->requested_left_crop()); } } @@ -778,7 +778,7 @@ VideoPanel::right_crop_changed () { _left_changed_last = false; if (_left_right_link->GetValue()) { - for (auto i: _parent->selected_video()) { + for (auto const& i: _parent->selected_video()) { i->video->set_left_crop (i->video->requested_right_crop()); } } |
