diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-06-24 23:34:15 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-06-24 23:35:30 +0200 |
commit | d734ce4635d468dffd67e7f86c9123df77e89bc4 (patch) | |
tree | 4bcb457ac34c190faa77644e4f7cf1cc30a4290b /src/Main/Forms/Forms.cpp | |
parent | 2cd39b37c2bf19f2c06cc2182aa46918178bba31 (diff) | |
download | VeraCrypt-d734ce4635d468dffd67e7f86c9123df77e89bc4.tar.gz VeraCrypt-d734ce4635d468dffd67e7f86c9123df77e89bc4.zip |
Linux/MacOSX: solve GUI layout issues although the volume creation wizard still has issues
Diffstat (limited to 'src/Main/Forms/Forms.cpp')
-rw-r--r-- | src/Main/Forms/Forms.cpp | 11 |
1 files changed, 5 insertions, 6 deletions
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 );
|