diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-05-06 00:03:18 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-05-06 00:03:18 +0200 |
| commit | 5898158750b1f898d35b51ad80ba25c24c830505 (patch) | |
| tree | cecb70071753000f883990d35258dc4a553e0c1f | |
| parent | 56f85797cbc862bf0f1cfd0ffdcff89c1b69d739 (diff) | |
Fix truncated email addresses in cinema email address.
| -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 17dcea6a3..f6007d235 100644 --- a/src/wx/cinema_dialog.cc +++ b/src/wx/cinema_dialog.cc @@ -67,7 +67,7 @@ CinemaDialog::CinemaDialog (wxWindow* parent, wxString title, string name, list< copy (emails.begin(), emails.end(), back_inserter (_emails)); vector<EditableListColumn> columns; - columns.push_back (EditableListColumn(_("Address"))); + columns.push_back (EditableListColumn(_("Address"), 500, true)); _email_list = new EditableList<string, EmailDialog> ( this, columns, bind (&CinemaDialog::get_emails, this), bind (&CinemaDialog::set_emails, this, _1), [](string s, int) { return s; |
