Salome HOME
23049: [CEA 1475] Increase the size of some dialog boxes
[modules/smesh.git] / src / SMESHGUI / SMESHGUI.cxx
index 9eb0ab0dab43fb2a578ceb24ebba37d06554d64c..de3f26559900713a3cfa74842478cd418f9ef699 100644 (file)
 #include <QApplication>
 #include <QMenu>
 #include <QTextStream>
+#include <QListView>
+#include <QTreeView>
 
 // BOOST includes
 #include <boost/shared_ptr.hpp>
@@ -715,6 +717,16 @@ namespace
       if ( !anInitialPath.isEmpty() )
         fd->setDirectory( anInitialPath );
       fd->selectFile(aMeshName);
+      
+      
+      QListView *lview = fd->findChild<QListView*>("listView");
+      if( lview ) {
+        lview->setMinimumHeight(200);
+      }
+      QTreeView *tview = fd->findChild<QTreeView*>("treeView");
+      if( tview ) {
+        tview->setMinimumHeight(200);
+      }
 
       SMESHGUI_FileValidator* fv = new SMESHGUI_FileValidator( fd );
       fd->setValidator( fv );