DolphinWX: Center the links in the About dialog

This makes the links explicitly vertically centered in the DolphinWX
About dialog. It is not needed on Windows, because the links have the
same height as text (and look just like text links). However, this is
required on other platforms or the links would look misaligned.
This commit is contained in:
Léo Lam 2016-07-17 22:48:26 +02:00
parent 92594e08d4
commit 66c2ce6c74
1 changed files with 10 additions and 7 deletions

View File

@ -82,16 +82,19 @@ AboutDolphin::AboutDolphin(wxWindow* parent, wxWindowID id, const wxString& titl
Copyright->SetFont(CopyrightFont);
Copyright->SetFocus();
wxSizerFlags center_flag;
center_flag.Center();
wxBoxSizer* const sCheckUpdates = new wxBoxSizer(wxHORIZONTAL);
sCheckUpdates->Add(UpdateText);
sCheckUpdates->Add(Download);
sCheckUpdates->Add(UpdateText, center_flag);
sCheckUpdates->Add(Download, center_flag);
wxBoxSizer* const sLinks = new wxBoxSizer(wxHORIZONTAL);
sLinks->Add(License);
sLinks->Add(FirstSpacer);
sLinks->Add(Authors);
sLinks->Add(SecondSpacer);
sLinks->Add(Support);
sLinks->Add(License, center_flag);
sLinks->Add(FirstSpacer, center_flag);
sLinks->Add(Authors, center_flag);
sLinks->Add(SecondSpacer, center_flag);
sLinks->Add(Support, center_flag);
wxBoxSizer* const sInfo = new wxBoxSizer(wxVERTICAL);
sInfo->Add(Dolphin);