Fix of #5472 - UI bug: profile edit controls hidden by scroll bars
This commit is contained in:
parent
4911b36bfd
commit
8627c35057
1 changed files with 1 additions and 1 deletions
|
@ -630,7 +630,7 @@ void Sidebar::priv::show_preset_comboboxes()
|
||||||
// Sidebar / public
|
// Sidebar / public
|
||||||
|
|
||||||
Sidebar::Sidebar(Plater *parent)
|
Sidebar::Sidebar(Plater *parent)
|
||||||
: wxPanel(parent, wxID_ANY, wxDefaultPosition, wxSize(40 * wxGetApp().em_unit(), -1)), p(new priv(parent))
|
: wxPanel(parent, wxID_ANY, wxDefaultPosition, wxSize(42 * wxGetApp().em_unit(), -1)), p(new priv(parent))
|
||||||
{
|
{
|
||||||
p->scrolled = new wxScrolledWindow(this);
|
p->scrolled = new wxScrolledWindow(this);
|
||||||
p->scrolled->SetScrollbars(0, 100, 1, 2);
|
p->scrolled->SetScrollbars(0, 100, 1, 2);
|
||||||
|
|
Loading…
Add table
Reference in a new issue