1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-02-20 15:40:32 +00:00

More modifications

This commit is contained in:
Pieter van der Kloet 2011-04-13 22:59:03 +02:00
parent fc095b902d
commit 5754a132c5
2 changed files with 5 additions and 9 deletions

View File

@ -32,15 +32,14 @@ DataFilesPage::DataFilesPage(QWidget *parent) : QWidget(parent)
// Add both tables to a splitter
QSplitter *splitter = new QSplitter(this);
splitter->setOrientation(Qt::Vertical);
splitter->setOrientation(Qt::Horizontal);
splitter->addWidget(mPluginsTable);
splitter->addWidget(mMastersWidget);
splitter->addWidget(mPluginsTable);
// Adjust the default widget heights inside the splitter
// Adjust the default widget widths inside the splitter
QList<int> sizeList;
sizeList << 200 << 400;
sizeList << 100 << 300;
splitter->setSizes(sizeList);
// Bottom part with profile options

View File

@ -26,10 +26,7 @@ MainDialog::MainDialog()
mIconWidget->setFixedHeight(80);
mIconWidget->setSpacing(4);
mIconWidget->setCurrentRow(0);
//QSize itemSize(80, 80);
//mIconWidget->setGridSize ( itemSize );
mIconWidget->setFlow(QListView::LeftToRight);
QGroupBox *groupBox = new QGroupBox(this);