From: Carl Hetherington Date: Sun, 9 May 2021 08:39:26 +0000 (+0200) Subject: Fix wrapping of try-unmount dialogue on macOS (#1989). X-Git-Tag: v2.15.145~1 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=33b14b1c003a19020b3c5f12e639d91140f1388d Fix wrapping of try-unmount dialogue on macOS (#1989). --- diff --git a/src/wx/try_unmount_dialog.cc b/src/wx/try_unmount_dialog.cc index ffa4af535..8a75a1376 100644 --- a/src/wx/try_unmount_dialog.cc +++ b/src/wx/try_unmount_dialog.cc @@ -25,16 +25,20 @@ #include +static int constexpr width = 300; + + TryUnmountDialog::TryUnmountDialog (wxWindow* parent, wxString description) : wxDialog (parent, wxID_ANY, _("DCP-o-matic Disk Writer")) { auto sizer = new wxBoxSizer (wxVERTICAL); - auto text = new StaticText (this, wxEmptyString); + auto text = new StaticText (this, wxEmptyString, wxDefaultPosition, wxSize(width, -1)); sizer->Add (text, 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER); text->SetLabelMarkup ( wxString::Format(_("The drive %s is mounted.\n\nIt must be unmounted before DCP-o-matic can write to it.\n\nShould DCP-o-matic try to unmount it now?"), description) ); + text->Wrap(width); auto buttons = CreateSeparatedButtonSizer (wxOK | wxCANCEL); if (buttons) {