X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Fwx%2Fcontent_menu.cc;h=93bcc0a6d4042f05a4980e96f1212ea49ebfc27f;hp=ed515f6c8041ee1fd678330a9c53a349791d6c6a;hb=09df98b2b47f6f9a754d5ff8a1787da5a07c14b4;hpb=db845a29ef318bc08c4d713c4c47ec5203867c0d diff --git a/src/wx/content_menu.cc b/src/wx/content_menu.cc index ed515f6c8..93bcc0a6d 100644 --- a/src/wx/content_menu.cc +++ b/src/wx/content_menu.cc @@ -602,13 +602,13 @@ ContentMenu::auto_crop () /* Handle the user closing the dialog (with OK or cancel) */ _auto_crop_dialog->Bind (wxEVT_BUTTON, [this, viewer](wxCommandEvent& ev) { + _auto_crop_config_connection.disconnect (); + _auto_crop_viewer_connection.disconnect (); if (ev.GetId() == wxID_OK) { _content.front()->video->set_crop(_auto_crop_dialog->get()); } _auto_crop_dialog->Show (false); viewer->unset_crop_guess (); - _auto_crop_config_connection.disconnect (); - _auto_crop_viewer_connection.disconnect (); }); /* Update the view when something in the dialog is changed */