From 718926b36c819f771af0c424466d4c826df16d33 Mon Sep 17 00:00:00 2001 From: rnv Date: Tue, 21 Apr 2015 10:18:10 +0300 Subject: [PATCH 1/1] 23049: [CEA 1475] Increase the size of some dialog boxes --- src/SMESHGUI/SMESHGUI.cxx | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/SMESHGUI/SMESHGUI.cxx b/src/SMESHGUI/SMESHGUI.cxx index 9eb0ab0da..de3f26559 100644 --- a/src/SMESHGUI/SMESHGUI.cxx +++ b/src/SMESHGUI/SMESHGUI.cxx @@ -150,6 +150,8 @@ #include #include #include +#include +#include // BOOST includes #include @@ -715,6 +717,16 @@ namespace if ( !anInitialPath.isEmpty() ) fd->setDirectory( anInitialPath ); fd->selectFile(aMeshName); + + + QListView *lview = fd->findChild("listView"); + if( lview ) { + lview->setMinimumHeight(200); + } + QTreeView *tview = fd->findChild("treeView"); + if( tview ) { + tview->setMinimumHeight(200); + } SMESHGUI_FileValidator* fv = new SMESHGUI_FileValidator( fd ); fd->setValidator( fv ); -- 2.30.2