From d734ce4635d468dffd67e7f86c9123df77e89bc4 Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Wed, 24 Jun 2015 23:34:15 +0200 Subject: Linux/MacOSX: solve GUI layout issues although the volume creation wizard still has issues --- src/Main/Forms/Forms.cpp | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'src/Main/Forms/Forms.cpp') diff --git a/src/Main/Forms/Forms.cpp b/src/Main/Forms/Forms.cpp index 0793a24c..0cfd9562 100644 --- a/src/Main/Forms/Forms.cpp +++ b/src/Main/Forms/Forms.cpp @@ -531,7 +531,7 @@ MainFrameBase::~MainFrameBase() WizardFrameBase::WizardFrameBase( 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( 750,450 ), wxDefaultSize ); + this->SetSizeHints( wxSize( 800,500 ), wxDefaultSize ); MainSizer = new wxBoxSizer( wxVERTICAL ); @@ -1505,8 +1505,7 @@ MountOptionsDialogBase::MountOptionsDialogBase( wxWindow* parent, wxWindowID id, this->SetSizeHints( wxDefaultSize, wxDefaultSize ); this->SetExtraStyle( GetExtraStyle() | wxWS_EX_VALIDATE_RECURSIVELY ); - wxBoxSizer* bSizer5; - bSizer5 = new wxBoxSizer( wxVERTICAL ); + MainSizer = new wxBoxSizer( wxVERTICAL ); wxBoxSizer* bSizer19; bSizer19 = new wxBoxSizer( wxVERTICAL ); @@ -1653,12 +1652,12 @@ MountOptionsDialogBase::MountOptionsDialogBase( wxWindow* parent, wxWindowID id, bSizer19->Add( bSizer6, 0, wxEXPAND, 5 ); - bSizer5->Add( bSizer19, 1, wxEXPAND, 5 ); + MainSizer->Add( bSizer19, 1, wxEXPAND, 5 ); - this->SetSizer( bSizer5 ); + this->SetSizer( MainSizer ); this->Layout(); - bSizer5->Fit( this ); + MainSizer->Fit( this ); this->Centre( wxBOTH ); -- cgit v1.2.3