diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-08-12 22:03:11 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-08-12 23:18:53 +0200 |
| commit | 19e47294d1de485a12dccf2c25bec0c8144049e8 (patch) | |
| tree | 6dfdfc46bf6fbf4514e0ec303d094dc03992a16f /src/wx/audio_panel.h | |
| parent | 423996af81218d48dbeaccef52ff822e02c43128 (diff) | |
Fix flickering black square when selecting content on Windows (#1866).
Diffstat (limited to 'src/wx/audio_panel.h')
| -rw-r--r-- | src/wx/audio_panel.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/wx/audio_panel.h b/src/wx/audio_panel.h index 0ae9da88e..5e8f92597 100644 --- a/src/wx/audio_panel.h +++ b/src/wx/audio_panel.h @@ -39,9 +39,10 @@ public: explicit AudioPanel (ContentPanel *); ~AudioPanel (); - void film_changed (Film::Property); - void film_content_changed (int); - void content_selection_changed (); + void create () override; + void film_changed (Film::Property) override; + void film_content_changed (int) override; + void content_selection_changed () override; void set_film (std::shared_ptr<Film>); private: @@ -53,7 +54,7 @@ private: void active_jobs_changed (boost::optional<std::string>, boost::optional<std::string>); void setup_sensitivity (); void reference_clicked (); - void add_to_grid (); + void add_to_grid () override; boost::optional<float> peak () const; wxCheckBox* _reference; |
