Skip to content

Commit

Permalink
Don't require so much space for extractors list
Browse files Browse the repository at this point in the history
Fixes #363.
  • Loading branch information
vslavik committed Apr 10, 2017
1 parent 2cc1e0a commit 0f5155b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/prefsdlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ class ExtractorsPageWindow : public PrefsPanel
listSizer->AddSpacer(PX(5));

m_list = new wxCheckListBox(listPanel, wxID_ANY, wxDefaultPosition, wxDefaultSize, 0, nullptr, wxBORDER_NONE);
m_list->SetMinSize(wxSize(PX(400),PX(300)));
m_list->SetMinSize(wxSize(PX(400),PX(200)));
#ifdef __WXOSX__
m_list->SetWindowVariant(wxWINDOW_VARIANT_SMALL);
#endif
Expand Down

0 comments on commit 0f5155b

Please sign in to comment.