mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-01-21 05:00:06 -05:00
--User changes
-No longer automatically set sequence checkbox in the final render dialog when rendering a sequence. It's an outdated option for today's hardware. --Bug fixes -Properly count the number of images in the final render dialog when starting from a non-zero offset.
This commit is contained in:
parent
7929e0ef05
commit
a8fc7caa9f
@ -974,7 +974,7 @@ void FractoriumFinalRenderDialog::showEvent(QShowEvent* e)
|
||||
if (m_FromSequence)
|
||||
{
|
||||
ui.FinalRenderDoAllCheckBox->setChecked(true);
|
||||
ui.FinalRenderDoSequenceCheckBox->setChecked(true);
|
||||
//ui.FinalRenderDoSequenceCheckBox->setChecked(true);
|
||||
ui.FinalRenderApplyToAllCheckBox->setChecked(true);
|
||||
m_PrefixEdit->setText(firstfile + "_");
|
||||
}
|
||||
|
@ -268,7 +268,8 @@ FinalRenderEmberController<T>::FinalRenderEmberController(FractoriumFinalRenderD
|
||||
//The rendering process is different between doing a single image, and doing multiple.
|
||||
if (doAll)
|
||||
{
|
||||
m_ImageCount = m_EmberFile.Size();
|
||||
auto i = m_GuiState.m_StartAt;
|
||||
m_ImageCount = m_EmberFile.Size() - i;
|
||||
ostringstream os;
|
||||
const auto padding = streamsize(std::log10(m_EmberFile.Size())) + 1;
|
||||
os << setfill('0') << setprecision(0) << fixed;
|
||||
@ -335,8 +336,6 @@ FinalRenderEmberController<T>::FinalRenderEmberController(FractoriumFinalRenderD
|
||||
else if (m_Renderer.get())//Make sure a renderer was created and render all images, but not as an animation sequence (without temporal samples motion blur).
|
||||
{
|
||||
//Render each image, cancelling if m_Run ever gets set to false.
|
||||
auto i = m_GuiState.m_StartAt;
|
||||
|
||||
while (auto ember = m_EmberFile.Get(i))
|
||||
{
|
||||
if (!m_Run)
|
||||
|
Loading…
Reference in New Issue
Block a user