Button 'Load shape from STL' centered into its panel in bed shape dialog
This commit is contained in:
parent
2a71665de9
commit
d101ed709c
@ -92,13 +92,15 @@ void BedShapePanel::build_panel(ConfigOptionPoints* default_pt)
|
|||||||
Line line{ "", "" };
|
Line line{ "", "" };
|
||||||
line.full_width = 1;
|
line.full_width = 1;
|
||||||
line.widget = [this](wxWindow* parent) {
|
line.widget = [this](wxWindow* parent) {
|
||||||
auto btn = new wxButton(parent, wxID_ANY, _(L("Load shape from STL...")), wxDefaultPosition, wxDefaultSize);
|
auto shape_btn = new wxButton(parent, wxID_ANY, _(L("Load shape from STL...")));
|
||||||
|
wxSizer* shape_sizer = new wxBoxSizer(wxHORIZONTAL);
|
||||||
auto sizer = new wxBoxSizer(wxHORIZONTAL);
|
shape_sizer->Add(shape_btn, 1, wxEXPAND);
|
||||||
sizer->Add(btn);
|
|
||||||
|
|
||||||
btn->Bind(wxEVT_BUTTON, ([this](wxCommandEvent e)
|
wxSizer* sizer = new wxBoxSizer(wxVERTICAL);
|
||||||
{
|
sizer->Add(shape_sizer, 1, wxEXPAND);
|
||||||
|
|
||||||
|
shape_btn->Bind(wxEVT_BUTTON, ([this](wxCommandEvent& e)
|
||||||
|
{
|
||||||
load_stl();
|
load_stl();
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user