summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-09-27 15:39:56 +0100
committerCarl Hetherington <cth@carlh.net>2018-09-27 15:39:56 +0100
commit2541b18e598db86ac4ce2aa5c0bbb588344c3dbb (patch)
tree7a99f3ace73e34e1b290cbfe2111f826939e0db9 /src
parent1f1661f36ffd7a5662847f0642c7a7ebdcadc0f0 (diff)
Tweak spacing.
Diffstat (limited to 'src')
-rw-r--r--src/wx/initial_setup_dialog.cc10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/wx/initial_setup_dialog.cc b/src/wx/initial_setup_dialog.cc
index af2917990..ac6f918a0 100644
--- a/src/wx/initial_setup_dialog.cc
+++ b/src/wx/initial_setup_dialog.cc
@@ -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);