MainFrame: change size constraints.
This commit is contained in:
parent
ae2a613879
commit
32c193a53b
2 changed files with 2 additions and 2 deletions
|
@ -11,7 +11,7 @@
|
||||||
|
|
||||||
MainFrame::MainFrame( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style ) : wxFrame( parent, id, title, pos, size, style )
|
MainFrame::MainFrame( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style ) : wxFrame( parent, id, title, pos, size, style )
|
||||||
{
|
{
|
||||||
this->SetSizeHints( wxSize( -1,600 ), wxDefaultSize );
|
this->SetSizeHints( wxSize( -1,600 ), wxSize( -1,600 ) );
|
||||||
|
|
||||||
wxBoxSizer* bSizerMain;
|
wxBoxSizer* bSizerMain;
|
||||||
bSizerMain = new wxBoxSizer( wxVERTICAL );
|
bSizerMain = new wxBoxSizer( wxVERTICAL );
|
||||||
|
|
|
@ -41,7 +41,7 @@
|
||||||
<property name="font"></property>
|
<property name="font"></property>
|
||||||
<property name="hidden">0</property>
|
<property name="hidden">0</property>
|
||||||
<property name="id">wxID_ANY</property>
|
<property name="id">wxID_ANY</property>
|
||||||
<property name="maximum_size"></property>
|
<property name="maximum_size">-1,600</property>
|
||||||
<property name="minimum_size">-1,600</property>
|
<property name="minimum_size">-1,600</property>
|
||||||
<property name="name">MainFrame</property>
|
<property name="name">MainFrame</property>
|
||||||
<property name="pos"></property>
|
<property name="pos"></property>
|
||||||
|
|
Loading…
Reference in a new issue