Tweak spacing.
authorCarl Hetherington <cth@carlh.net>
Thu, 27 Sep 2018 14:39:56 +0000 (15:39 +0100)
committerCarl Hetherington <cth@carlh.net>
Thu, 27 Sep 2018 14:39:56 +0000 (15:39 +0100)
src/wx/initial_setup_dialog.cc

index af2917990e62fba5618ef105e025c05ea3f2bce1..ac6f918a0591b4c9b4f0a020ba144a4b3450cd8c 100644 (file)
@@ -36,14 +36,18 @@ InitialSetupDialog::InitialSetupDialog ()
                        "<i>Simple mode</i> is ideal for producing straightforward DCPs without too many confusing "
                        "options.\n\n"
                        "<i>Full mode</i> gives you the most control over the DCPs you make.\n\n"
-                       "Please choose which mode you would like to start DCP-o-matic in:\n\n"
+                       "Please choose which mode you would like to start DCP-o-matic in:"
                        )
                );
 
+       wxBoxSizer* mode_sizer = new wxBoxSizer (wxVERTICAL);
+
        _simple = new wxRadioButton (this, wxID_ANY, _("Simple mode"), wxDefaultPosition, wxDefaultSize, wxRB_GROUP);
-       sizer->Add (_simple, 0, wxLEFT, 24);
+       mode_sizer->Add (_simple, 0, wxTOP, 12);
        _full = new wxRadioButton (this, wxID_ANY, _("Full mode"));
-       sizer->Add (_full, 0, wxLEFT, 24);
+       mode_sizer->Add (_full, 0, wxTOP, 8);
+
+       sizer->Add (mode_sizer, 0, wxLEFT, 24);
 
        if (Config::instance()->interface_complexity() == Config::INTERFACE_SIMPLE) {
                _simple->SetValue (true);