mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2026-05-18 22:00:16 -04:00
0.4.0.9 Beta 07/27/2014
0.4.0.9 Beta 07/27/2014 --User Changes Properly set tab order on all controls. Calculate and report iters/second in the final render dialog. Immediately draw yellow dot on xform mouse down on previously unselected xform. --Bug Fixes Fix GlynnSim1, GlynnSim2, GlynnSim3 and juliaNab by ensuring the first argument to pow() is >= 0. Ensure OpenCL platform and device combo boxes in the final render dialog expand as needed. --Code Changes Make VariationTreeSpinbox take its parent VariationTreeWidgetItem as a constructor argument. This makes SetupVariationTree() and VariationSpinBoxValueChanged() more efficient. Make Interference2 and ho use fabs().
This commit is contained in:
@ -136,7 +136,7 @@ void Fractorium::OnXaosFromToToggled(bool checked)
|
||||
void Fractorium::FillXaosTable()
|
||||
{
|
||||
int spinHeight = 20;
|
||||
|
||||
QWidget* w;
|
||||
ui.XaosTable->setRowCount(m_Controller->XformCount());//This will grow or shrink the number of rows and call the destructor for previous DoubleSpinBoxes.
|
||||
|
||||
for (int i = 0; i < m_Controller->XformCount(); i++)
|
||||
@ -150,7 +150,16 @@ void Fractorium::FillXaosTable()
|
||||
ui.XaosTable->setItem(i, 0, xformNameItem);
|
||||
ui.XaosTable->setCellWidget(i, 1, spinBox);
|
||||
connect(spinBox, SIGNAL(valueChanged(double)), this, SLOT(OnXaosChanged(double)), Qt::QueuedConnection);
|
||||
|
||||
if (i > 0)
|
||||
w = SetTabOrder(this, w, spinBox);
|
||||
else
|
||||
w = spinBox;
|
||||
}
|
||||
|
||||
w = SetTabOrder(this, w, ui.XaosToRadio);
|
||||
w = SetTabOrder(this, w, ui.XaosFromRadio);
|
||||
w = SetTabOrder(this, w, ui.ClearXaosButton);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user