summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-07-10 21:30:30 +0100
committerCarl Hetherington <cth@carlh.net>2013-07-10 21:30:30 +0100
commit3650602cff884abb74b2a16a2a075fa74b06617f (patch)
treefbbd0bed18a81355fce12dba2426b5775e5534f7 /src
parent1611341602bf0aac151f95e0242a8abebc18c403 (diff)
More layout.
Diffstat (limited to 'src')
-rw-r--r--src/wx/about_dialog.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/wx/about_dialog.cc b/src/wx/about_dialog.cc
index 90aa911fa..4e25f163f 100644
--- a/src/wx/about_dialog.cc
+++ b/src/wx/about_dialog.cc
@@ -43,7 +43,7 @@ AboutDialog::AboutDialog (wxWindow* parent)
wxStaticText* t = new wxStaticText (this, wxID_ANY, _("DCP-o-matic"));
t->SetFont (title_font);
- sizer->Add (t, wxSizerFlags().Centre().Border(wxALL, 8));
+ sizer->Add (t, wxSizerFlags().Centre().Border(wxALL, 16));
wxString s;
if (strcmp (dcpomatic_git_commit, "release") == 0) {
@@ -52,7 +52,7 @@ AboutDialog::AboutDialog (wxWindow* parent)
t = new wxStaticText (this, wxID_ANY, std_to_wx (String::compose ("Version %1 git %2", dcpomatic_version, dcpomatic_git_commit)));
}
t->SetFont (version_font);
- sizer->Add (t, wxSizerFlags().Centre().Border(wxALL, 8));
+ sizer->Add (t, wxSizerFlags().Centre().Border(wxALL, 2));
sizer->AddSpacer (12);
t = new wxStaticText (
@@ -70,7 +70,7 @@ AboutDialog::AboutDialog (wxWindow* parent)
wxT ("http://dcpomatic.com")
);
- sizer->Add (h, wxSizerFlags().Centre().Border());
+ sizer->Add (h, wxSizerFlags().Centre().Border(wxALL, 8));
t = new wxStaticText (
this, wxID_ANY,
@@ -78,7 +78,7 @@ AboutDialog::AboutDialog (wxWindow* parent)
wxDefaultPosition, wxDefaultSize, wxALIGN_CENTER
);
- sizer->Add (t, wxSizerFlags().Centre().Border(wxALL, 8));
+ sizer->Add (t, wxSizerFlags().Centre().Border(wxLEFT | wxRIGHT, 16));
_notebook = new wxNotebook (this, wxID_ANY);
@@ -119,7 +119,7 @@ AboutDialog::AboutDialog (wxWindow* parent)
supported_by.Add (wxT ("Kieran Carroll"));
add_section (_("Supported by"), supported_by);
- sizer->Add (_notebook, wxSizerFlags().Centre().Border(wxALL, 8).Expand());
+ sizer->Add (_notebook, wxSizerFlags().Centre().Border(wxALL, 16).Expand());
SetSizerAndFit (sizer);
}