Skip to content

Commit

Permalink
Fix a wxWidgets debug assertion about incompatible sizing flags
Browse files Browse the repository at this point in the history
  • Loading branch information
codereader committed Mar 30, 2020
1 parent 3252137 commit 1acf776
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/dm.objectives/ce/CustomClockedComponentEditor.cpp
Expand Up @@ -45,7 +45,7 @@ CustomClockedComponentEditor::CustomClockedComponentEditor(wxWindow* parent, Com

wxBoxSizer* hbox = new wxBoxSizer(wxHORIZONTAL);
hbox->Add(_interval, 0, wxEXPAND | wxRIGHT, 6);
hbox->Add(new wxStaticText(_panel, wxID_ANY, _("seconds:")), 0, wxEXPAND | wxALIGN_CENTER_VERTICAL);
hbox->Add(new wxStaticText(_panel, wxID_ANY, _("seconds:")), 0, wxEXPAND);

_panel->GetSizer()->Add(hbox, 0, wxBOTTOM | wxEXPAND, 6);

Expand Down

0 comments on commit 1acf776

Please sign in to comment.