--Bug fixes

-Dragging library items to a new position was not properly resetting the current flame pointer, so subsequent edits would unintentionally overwrite different flames.
This commit is contained in:
Person 2019-05-20 18:24:32 -07:00
parent 142b597565
commit 243be8d702

View File

@ -148,6 +148,9 @@ void FractoriumEmberController<T>::SyncLibrary(eLibraryUpdate update)
if (update & eLibraryUpdate::POINTER)
item->SetEmberPointer(&(*it));
if (item->checkState(0) == Qt::Checked)
m_EmberFilePointer = item->GetEmber();
}
}
}