Fix for #8693 - GUI: Layout of "Object Manipulation"-Panel is broken (Linux GTK3)
This commit is contained in:
parent
abbc99924e
commit
8443e763c7
3 changed files with 8 additions and 7 deletions
src/slic3r/GUI
|
@ -257,9 +257,9 @@ ObjectManipulation::ObjectManipulation(wxWindow* parent) :
|
|||
// axis_name->SetForegroundColour(wxColour(axes_color_text[axis_idx]));
|
||||
|
||||
sizer = new wxBoxSizer(wxHORIZONTAL);
|
||||
// Under OSX we use font, smaller than default font, so
|
||||
// Under OSX or Linux with GTK3 we use font, smaller than default font, so
|
||||
// there is a next trick for an equivalent layout of coordinates combobox and axes labels in they own sizers
|
||||
if (wxOSX)
|
||||
if (wxOSX || wxGTK3)
|
||||
sizer->SetMinSize(-1, m_word_local_combo->GetBestHeight(-1));
|
||||
sizer->Add(axis_name, 0, wxALIGN_CENTER_VERTICAL | wxRIGHT, border);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue