Remove scrolling in AudioMappingView.
[dcpomatic.git] / src / wx / try_unmount_dialog.cc
index ffa4af535b7271966db5d38c5616052e48b33196..ddfaec5c09f60470d58a8f924f9ab26952c208c0 100644 (file)
 */
 
 
+#include "static_text.h"
 #include "try_unmount_dialog.h"
 #include "wx_util.h"
-#include "static_text.h"
+#include <dcp/warnings.h>
+LIBDCP_DISABLE_WARNINGS
 #include <wx/wx.h>
+LIBDCP_ENABLE_WARNINGS
+
+
+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 <b>%s</b> 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) {