update preview on history

This commit is contained in:
Jonas Mucke
2020-01-23 20:36:18 +01:00
parent 17739d6be9
commit 3aefb6c634

View File

@@ -521,6 +521,7 @@ void PaintingArea::historyGoBack(){
historyPresent = 99;
layerBundle = history[static_cast<size_t>(historyPresent)];
}
this->guiReference->UpdateGui();
}
void PaintingArea::historyGoForward(){
@@ -529,4 +530,5 @@ void PaintingArea::historyGoForward(){
historyPresent = 0;
layerBundle = history[static_cast<size_t>(historyPresent)];
}
this->guiReference->UpdateGui();
}