From: unknown Date: Fri, 19 Apr 2013 15:07:38 +0000 (+0200) Subject: Feature #1711 CreaDevManager application implementation X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?p=crea.git;a=commitdiff_plain;h=e622abafafec5f3887413020502eebf8631cd853 Feature #1711 CreaDevManager application implementation Fix: library inclusion settings fixed for windows display --- diff --git a/lib/creaDevManagerLib/wxCDMApplicationDescriptionPanel.cpp b/lib/creaDevManagerLib/wxCDMApplicationDescriptionPanel.cpp index 70a45fa..5b63f23 100644 --- a/lib/creaDevManagerLib/wxCDMApplicationDescriptionPanel.cpp +++ b/lib/creaDevManagerLib/wxCDMApplicationDescriptionPanel.cpp @@ -151,7 +151,7 @@ void wxCDMApplicationDescriptionPanel::CreateControls() //Includes wxStaticBoxSizer* includesBox = new wxStaticBoxSizer(wxHORIZONTAL, this, wxT("&Used Libraries")); - includesBox->SetMinSize(250,250); + includesBox->SetMinSize(200,250); wxScrolledWindow* includesPanel = new wxScrolledWindow(this); wxBoxSizer* includesPanelSizer = new wxBoxSizer(wxVERTICAL); diff --git a/lib/creaDevManagerLib/wxCDMLibraryDescriptionPanel.cpp b/lib/creaDevManagerLib/wxCDMLibraryDescriptionPanel.cpp index 53472bb..71f6d69 100644 --- a/lib/creaDevManagerLib/wxCDMLibraryDescriptionPanel.cpp +++ b/lib/creaDevManagerLib/wxCDMLibraryDescriptionPanel.cpp @@ -152,7 +152,7 @@ void wxCDMLibraryDescriptionPanel::CreateControls() //Includes wxStaticBoxSizer* includesBox = new wxStaticBoxSizer(wxHORIZONTAL, this, wxT("&Used Libraries")); - includesBox->SetMinSize(250,250); + includesBox->SetMinSize(200,250); wxScrolledWindow* includesPanel = new wxScrolledWindow(this); wxBoxSizer* includesPanelSizer = new wxBoxSizer(wxVERTICAL); diff --git a/lib/creaDevManagerLib/wxCDMPackageConfigurationDialog.cpp b/lib/creaDevManagerLib/wxCDMPackageConfigurationDialog.cpp index e88415b..2ab63a6 100644 --- a/lib/creaDevManagerLib/wxCDMPackageConfigurationDialog.cpp +++ b/lib/creaDevManagerLib/wxCDMPackageConfigurationDialog.cpp @@ -137,7 +137,7 @@ void wxCDMPackageConfigurationDialog::CreateControls() )); ChBIncl->SetName(crea::std2wx(it->first)); ChBIncl->SetValue(it->second); - includesGridSizer->Add(ChBIncl, 1, wxEXPAND); + includesGridSizer->Add(ChBIncl, 0, wxEXPAND); wxStaticText* LNmIncl = new wxStaticText(includesPanel, wxID_ANY, crea::std2wx(it->first)); includesGridSizer->Add(LNmIncl, 1, wxEXPAND); @@ -196,7 +196,7 @@ void wxCDMPackageConfigurationDialog::CreateControls() ")")); ChBIncl->SetName(crea::std2wx(it->first)); ChBIncl->SetValue(it->second); - includesLibGridSizer->Add(ChBIncl, 1, wxEXPAND); + includesLibGridSizer->Add(ChBIncl, 0, wxEXPAND); wxStaticText* LNmIncl = new wxStaticText(includesPanel, wxID_ANY, crea::std2wx(it->first)); includesLibGridSizer->Add(LNmIncl, 1, wxEXPAND);