X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fhints_dialog.cc;h=cbd48ec36c3b60fdfd51c2d4d45ba7ffd887c8af;hb=40755a826d9f28be8ac69cfbab48a5ad1ad18961;hp=2c02a4f72a12ff74478838839741a79da999014a;hpb=5c84260aa3867f814081369b77ef89f6edaa3e16;p=dcpomatic.git diff --git a/src/wx/hints_dialog.cc b/src/wx/hints_dialog.cc index 2c02a4f72..cbd48ec36 100644 --- a/src/wx/hints_dialog.cc +++ b/src/wx/hints_dialog.cc @@ -75,8 +75,8 @@ HintsDialog::HintsDialog (wxWindow* parent, boost::weak_ptr film, bool ok) boost::shared_ptr locked_film = _film.lock (); if (locked_film) { - _film_changed_connection = locked_film->Changed.connect (boost::bind (&HintsDialog::film_changed, this)); - _film_content_changed_connection = locked_film->ContentChanged.connect (boost::bind (&HintsDialog::film_changed, this)); + _film_change_connection = locked_film->Change.connect (boost::bind (&HintsDialog::film_change, this, _1)); + _film_content_change_connection = locked_film->ContentChange.connect (boost::bind (&HintsDialog::film_content_change, this, _1)); } _hints->Hint.connect (bind (&HintsDialog::hint, this, _1)); @@ -84,12 +84,16 @@ HintsDialog::HintsDialog (wxWindow* parent, boost::weak_ptr film, bool ok) _hints->Pulse.connect (bind (&HintsDialog::pulse, this)); _hints->Finished.connect (bind (&HintsDialog::finished, this)); - film_changed (); + film_change (CHANGE_TYPE_DONE); } void -HintsDialog::film_changed () +HintsDialog::film_change (ChangeType type) { + if (type != CHANGE_TYPE_DONE) { + return; + } + _text->Clear (); _current.clear (); @@ -106,6 +110,12 @@ HintsDialog::film_changed () _hints->start (); } +void +HintsDialog::film_content_change (ChangeType type) +{ + film_change (type); +} + void HintsDialog::update () {