mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-07-16 13:14:51 -04:00
--User changes
-Allow the user to resume a finished render in the final render dialog with a higher quality. This only applies to rendering a single image with no strips. -Make clear xaos apply to all when Apply All is checked.
This commit is contained in:
@ -613,14 +613,13 @@ void Fractorium::SetPaletteFileComboIndex(const string& filename)
|
||||
template <typename T>
|
||||
void FractoriumEmberController<T>::ClearColorCurves(int i)
|
||||
{
|
||||
Update([&]
|
||||
UpdateAll([&](Ember<T>& ember, bool isMain)
|
||||
{
|
||||
if (i < 0)
|
||||
m_Ember.m_Curves.Init();
|
||||
ember.m_Curves.Init();
|
||||
else
|
||||
m_Ember.m_Curves.Init(i);
|
||||
|
||||
}, true, m_Renderer->EarlyClip() ? eProcessAction::FILTER_AND_ACCUM : eProcessAction::ACCUM_ONLY);
|
||||
ember.m_Curves.Init(i);
|
||||
}, true, m_Renderer->EarlyClip() ? eProcessAction::FILTER_AND_ACCUM : eProcessAction::ACCUM_ONLY, m_Fractorium->ApplyAll());
|
||||
FillCurvesControl();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user