From: Carl Hetherington Date: Mon, 16 Jan 2023 19:53:11 +0000 (+0100) Subject: Limit the size of the recipient file name in the screen dialog. X-Git-Tag: v2.16.41~35 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=106860252a1ac6b76bf13ab6ac968dfb01056305 Limit the size of the recipient file name in the screen dialog. --- diff --git a/src/wx/screen_dialog.cc b/src/wx/screen_dialog.cc index 3fa17353d..6b13675cd 100644 --- a/src/wx/screen_dialog.cc +++ b/src/wx/screen_dialog.cc @@ -154,8 +154,8 @@ ScreenDialog::ScreenDialog ( ++r; add_label_to_sizer (_sizer, this, _("Filename"), true, wxGBPosition(r, 0)); - _recipient_file = new wxStaticText (this, wxID_ANY, wxT("")); checked_set (_recipient_file, recipient_file.get_value_or("")); + _recipient_file = new wxStaticText(this, wxID_ANY, wxT(""), wxDefaultPosition, wxSize(600, -1), wxST_ELLIPSIZE_MIDDLE | wxST_NO_AUTORESIZE); _sizer->Add (_recipient_file, wxGBPosition(r, 1), wxDefaultSpan, wxALIGN_CENTER_VERTICAL, DCPOMATIC_SIZER_Y_GAP); ++r;