-Bug fixes:

--Adjust xaos cells when any group modification is made, such as random, clear, or row/col change.
--Remove some old style sheet code on the xforms tab that doesn't seem to make sense and was probably just a workaround for a transient Qt bug, of which there are hundreds.
This commit is contained in:
mfeemster
2015-09-14 20:53:19 -07:00
parent e8b8d70f47
commit 16dbbf1b29
3 changed files with 33 additions and 24 deletions

View File

@ -31,7 +31,32 @@ void Fractorium::InitXformsUI()
connect(ui.XformWeightNameTable, SIGNAL(cellChanged(int, int)), this, SLOT(OnXformNameChanged(int, int)), Qt::QueuedConnection);
ui.CurrentXformCombo->setProperty("soloxform", -1);
/*
ui.XformsTabWidget->setStyleSheet(
"QTabWidget::pane \n"
"{\n"
" border: 5px solid #898C95;\n"
" font: 9pt "Segoe UI";\n"
"}\n"
"\n"
"QTabWidget::tab-bar \n"
"{\n"
" bottom: -8px;\n"
"}\n"
"\n"
"DoubleSpinBox \n"
"{\n"
" font: 9pt "Segoe UI";\n"
"}\n"
"\n"
"SpinBox \n"
"{\n"
" font: 9pt "Segoe UI";\n"
"}"
);
*/
#ifndef WIN32
//For some reason linux makes these 24x24, even though the designer explicitly says 16x16.
ui.AddXformButton->setIconSize(QSize(16, 16));