From 243be8d702ace0718f2aaa72ac47acc90e36b2cb Mon Sep 17 00:00:00 2001 From: Person Date: Mon, 20 May 2019 18:24:32 -0700 Subject: [PATCH] --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. --- Source/Fractorium/FractoriumLibrary.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/Fractorium/FractoriumLibrary.cpp b/Source/Fractorium/FractoriumLibrary.cpp index a1c9b73..e757dfc 100644 --- a/Source/Fractorium/FractoriumLibrary.cpp +++ b/Source/Fractorium/FractoriumLibrary.cpp @@ -148,6 +148,9 @@ void FractoriumEmberController::SyncLibrary(eLibraryUpdate update) if (update & eLibraryUpdate::POINTER) item->SetEmberPointer(&(*it)); + + if (item->checkState(0) == Qt::Checked) + m_EmberFilePointer = item->GetEmber(); } } }