mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-06-30 13:26:02 -04:00
--User changes
-Add a new dialog for editing QSS stylesheets. Allow for saving, reloading and setting styles as default. --Include a dark style with the installation called dark.qss. --Also add support for themes such as Fusion. --Resize some controls to better fit with the new style. -Add an option to specify the number of random embers generated on startup. 1 is the minimum and the default. --Bug fixes -Properly enable/disable thread priority label in final render dialog in response to enable/disable of the OpenCL checkbox. -Remove all inline stylesheets. -Show xaos spinners with 6 decimal places. --Code changes -Remove redundant comparisons to nullptr, use ! instead; -Give some controls valid names instead of the auto generated ones. -DoubleSpinBoxTableItemDelegate.h: Add virtual keyword to overridden functions.
This commit is contained in:
@ -31,32 +31,6 @@ 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));
|
||||
|
Reference in New Issue
Block a user