mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-06-30 13:26:02 -04:00
--User changes
-Allow locking of the scale at which affine circles are displayed. -Allow user to toggle whether xform will be animated when generating sequences. Also show the animate value when loading. --Code changes -More conversion to C++11 style code. -Add another value to the eXformUpdate enum called UPDATE_CURRENT_AND_SELECTED in anticipation of future work. -Remove some old #defines.
This commit is contained in:
@ -56,7 +56,7 @@ void FractoriumVariationsDialog::ForEachSelectedCell(std::function<void(QTableWi
|
||||
QList<QTableWidgetItem*> selectedItems = table->selectedItems();
|
||||
table->model()->blockSignals(true);
|
||||
|
||||
foreach (QTableWidgetItem* item, selectedItems)
|
||||
for (auto item : selectedItems)
|
||||
if (item)
|
||||
func(item);
|
||||
|
||||
|
Reference in New Issue
Block a user