Remove some incorrect and ignored sizer flags
This commit is contained in:
parent
d5dde6cff2
commit
9ae508730d
3 changed files with 8 additions and 8 deletions
|
@ -145,7 +145,7 @@ DialogStyleEditor::DialogStyleEditor(wxWindow *parent, AssStyle *style, agi::Con
|
|||
SetIcon(GETICON(style_toolbutton_16));
|
||||
|
||||
auto add_with_label = [&](wxSizer *sizer, wxString const& label, wxWindow *ctrl) {
|
||||
sizer->Add(new wxStaticText(this, -1, label), wxSizerFlags().Center().Right().Border(wxLEFT | wxRIGHT));
|
||||
sizer->Add(new wxStaticText(this, -1, label), wxSizerFlags().Center().Border(wxLEFT | wxRIGHT));
|
||||
sizer->Add(ctrl, wxSizerFlags(1).Left().Expand());
|
||||
};
|
||||
|
||||
|
@ -318,8 +318,8 @@ DialogStyleEditor::DialogStyleEditor(wxWindow *parent, AssStyle *style, agi::Con
|
|||
wxSizer *MiscBoxBottom = new wxBoxSizer(wxHORIZONTAL);
|
||||
add_with_label(MiscBoxBottom, _("Encoding:"), Encoding);
|
||||
|
||||
MiscBox->Add(MiscBoxTop, wxSizerFlags().Expand().Center());
|
||||
MiscBox->Add(MiscBoxBottom, wxSizerFlags().Expand().Center().Border(wxTOP));
|
||||
MiscBox->Add(MiscBoxTop, wxSizerFlags().Expand());
|
||||
MiscBox->Add(MiscBoxBottom, wxSizerFlags().Expand().Border(wxTOP));
|
||||
|
||||
// Preview
|
||||
auto previewButton = new ColourButton(this, wxSize(45, 16), false, OPT_GET("Colour/Style Editor/Background/Preview")->GetColor());
|
||||
|
@ -361,7 +361,7 @@ DialogStyleEditor::DialogStyleEditor(wxWindow *parent, AssStyle *style, agi::Con
|
|||
|
||||
// General Layout
|
||||
wxSizer *MainSizer = new wxBoxSizer(wxVERTICAL);
|
||||
MainSizer->Add(ControlSizer, 1, wxALL | wxALIGN_CENTER | wxEXPAND, 5);
|
||||
MainSizer->Add(ControlSizer, 1, wxALL | wxEXPAND, 5);
|
||||
MainSizer->Add(ButtonSizer, 0, wxBOTTOM | wxEXPAND, 5);
|
||||
|
||||
SetSizerAndFit(MainSizer);
|
||||
|
|
|
@ -275,7 +275,7 @@ DialogStyleManager::DialogStyleManager(agi::Context *context)
|
|||
CatalogList = new wxComboBox(this,-1, "", wxDefaultPosition, wxSize(-1,-1), 0, nullptr, wxCB_READONLY);
|
||||
wxButton *CatalogNew = new wxButton(this, -1, _("New"));
|
||||
CatalogDelete = new wxButton(this, -1, _("Delete"));
|
||||
CatalogBox->Add(CatalogList,1,wxEXPAND | wxRIGHT | wxALIGN_RIGHT,5);
|
||||
CatalogBox->Add(CatalogList,1,wxEXPAND | wxRIGHT,5);
|
||||
CatalogBox->Add(CatalogNew,0,wxRIGHT,5);
|
||||
CatalogBox->Add(CatalogDelete,0,0,0);
|
||||
|
||||
|
|
|
@ -599,9 +599,9 @@ Interface_Hotkeys::Interface_Hotkeys(wxTreebook *book, Preferences *parent)
|
|||
wxSizer *buttons = new wxBoxSizer(wxHORIZONTAL);
|
||||
buttons->Add(quick_search, wxSizerFlags().Border());
|
||||
buttons->AddStretchSpacer(1);
|
||||
buttons->Add(new_button, wxSizerFlags().Border().Right());
|
||||
buttons->Add(edit_button, wxSizerFlags().Border().Right());
|
||||
buttons->Add(delete_button, wxSizerFlags().Border().Right());
|
||||
buttons->Add(new_button, wxSizerFlags().Border());
|
||||
buttons->Add(edit_button, wxSizerFlags().Border());
|
||||
buttons->Add(delete_button, wxSizerFlags().Border());
|
||||
|
||||
sizer->Add(buttons, wxSizerFlags().Expand());
|
||||
sizer->Add(dvc, wxSizerFlags(1).Expand().Border(wxLEFT | wxRIGHT));
|
||||
|
|
Loading…
Reference in a new issue