From 3aefb6c634766a2d99a621e907dc55af52784a5e Mon Sep 17 00:00:00 2001 From: Jonas Mucke Date: Thu, 23 Jan 2020 20:36:18 +0100 Subject: [PATCH] update preview on history --- src/Layer/PaintingArea.cpp | 2 ++ 1 file changed, 2 insertions(+) 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(); }