diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-05-06 00:03:06 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-05-06 00:03:06 +0200 |
| commit | 56f85797cbc862bf0f1cfd0ffdcff89c1b69d739 (patch) | |
| tree | c69b0754d6487361497e0edfa7336a4f20c4b8bf | |
| parent | e73d30f567763acd4346e61d125b3c50ee1a2ef1 (diff) | |
Fix missing buttons in cinema email list.
| -rw-r--r-- | src/wx/cinema_dialog.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/cinema_dialog.cc b/src/wx/cinema_dialog.cc index 659d334a2..17dcea6a3 100644 --- a/src/wx/cinema_dialog.cc +++ b/src/wx/cinema_dialog.cc @@ -71,7 +71,7 @@ CinemaDialog::CinemaDialog (wxWindow* parent, wxString title, string name, list< _email_list = new EditableList<string, EmailDialog> ( this, columns, bind (&CinemaDialog::get_emails, this), bind (&CinemaDialog::set_emails, this, _1), [](string s, int) { return s; - }, true, false + }, false, EditableListButton::NEW | EditableListButton::EDIT | EditableListButton::REMOVE ); sizer->Add (_email_list, wxGBPosition(r, 0), wxGBSpan(1, 2), wxEXPAND); |
