From 106860252a1ac6b76bf13ab6ac968dfb01056305 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 16 Jan 2023 20:53:11 +0100 Subject: [PATCH] Limit the size of the recipient file name in the screen dialog. --- src/wx/screen_dialog.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.30.2