diff --git a/src/Layer/PaintingArea.cpp b/src/Layer/PaintingArea.cpp index 56938dc..d147488 100644 --- a/src/Layer/PaintingArea.cpp +++ b/src/Layer/PaintingArea.cpp @@ -521,6 +521,7 @@ void PaintingArea::historyGoBack(){ historyPresent = 99; layerBundle = history[static_cast(historyPresent)]; } + this->guiReference->UpdateGui(); } void PaintingArea::historyGoForward(){ @@ -529,4 +530,5 @@ void PaintingArea::historyGoForward(){ historyPresent = 0; layerBundle = history[static_cast(historyPresent)]; } + this->guiReference->UpdateGui(); }