ui: Fixes in project wizzard
* stretch at end of preferences * space at scrollbar * default font size * only refresh project when something changed * fixed sizing of text fields * icons fit to font size * use em base sizes * added language to project type label
This commit is contained in:
@@ -63,12 +63,14 @@ void QtProjectWizzardContentSimple::populateWindow(QGridLayout* layout)
|
||||
|
||||
void QtProjectWizzardContentSimple::populateForm(QGridLayout* layout, int& row)
|
||||
{
|
||||
QLabel* label = createFormLabel("Search headers in project paths");
|
||||
QLabel* label = createFormLabel("Simple Setup");
|
||||
layout->addWidget(label, row, QtProjectWizzardWindow::FRONT_COL);
|
||||
|
||||
m_checkBox = new QCheckBox();
|
||||
m_checkBox = new QCheckBox("Search headers in project paths");
|
||||
layout->addWidget(m_checkBox, row, QtProjectWizzardWindow::BACK_COL);
|
||||
|
||||
// addHelpButton("help message", layout, row);
|
||||
|
||||
m_isForm = true;
|
||||
row++;
|
||||
}
|
||||
@@ -130,5 +132,5 @@ bool QtProjectWizzardContentSimple::check()
|
||||
|
||||
QSize QtProjectWizzardContentSimple::preferredWindowSize() const
|
||||
{
|
||||
return QSize(580, 350);
|
||||
return QSize(750, 350);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user