mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-07-16 13:14:51 -04:00
--User changes
-Allow dragging in folders which will be recursively traversed for flame files. -Allow for adjusting scale via keyboard with the < and > keys. -Show the count of opened flames on the header of the library tree. --Bug fixes -Attempt to preserve xaos when pasting xforms. --Code changes -Default flam3 compatibility mode to true.
This commit is contained in:
@ -901,9 +901,8 @@ static void AddXformsWithXaos(Ember<T>& ember, std::vector<std::pair<Xform<T>, s
|
||||
xf->SetXaos(j, 0);
|
||||
else if (!preserveXaos)
|
||||
xf->SetXaos(j, 1);
|
||||
|
||||
//else if (i - origXformCount < xforms.size())//Should never be out of bounds, but just to be safe.
|
||||
// xf->SetXaos(j, xforms[i - origXformCount].first.Xaos(j - origXformCount));
|
||||
else if (i - origXformCount < xforms.size())//Should never be out of bounds, but just to be safe.
|
||||
xf->SetXaos(j, xforms[i - origXformCount].first.Xaos(j - origXformCount));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user