mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-11 16:19:16 +05:00
23049: [CEA 1475] Increase the size of some dialog boxes
This commit is contained in:
parent
3b8dd51d87
commit
718926b36c
@ -150,6 +150,8 @@
|
||||
#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 );
|
||||
|
Loading…
Reference in New Issue
Block a user