diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-02-11 14:14:01 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-02-11 14:14:01 +0100 |
| commit | db58941a280462c88a145b234626971072f0511a (patch) | |
| tree | e7a30864ffc76aa4a9b80fc50d92c406392a1cab | |
| parent | 3144a348751dc0c91ba1d1c7fe6c90127de9ef21 (diff) | |
Extend the only column in the editable email address list.
| -rw-r--r-- | src/wx/recipient_dialog.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/recipient_dialog.cc b/src/wx/recipient_dialog.cc index b166f265d..802febbda 100644 --- a/src/wx/recipient_dialog.cc +++ b/src/wx/recipient_dialog.cc @@ -87,7 +87,7 @@ RecipientDialog::RecipientDialog ( copy (emails.begin(), emails.end(), back_inserter (_emails)); vector<EditableListColumn> columns; - columns.push_back (EditableListColumn(_("Address"))); + columns.push_back(EditableListColumn(_("Address"), 400, true)); _email_list = new EditableList<string, EmailDialog> ( this, columns, bind(&RecipientDialog::get_emails, this), bind(&RecipientDialog::set_emails, this, _1), bind(&column, _1), EditableListTitle::VISIBLE, |
