From 4d5a92e9b29b5730cc1e0df1d9a3d024f4cc4428 Mon Sep 17 00:00:00 2001 From: EvilSpirit Date: Sun, 1 Nov 2015 22:26:55 +0600 Subject: [PATCH] Make faces selectable again after undo. --- src/undoredo.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/undoredo.cpp b/src/undoredo.cpp index ab214c7..b6621a3 100644 --- a/src/undoredo.cpp +++ b/src/undoredo.cpp @@ -129,6 +129,10 @@ void SolveSpaceUI::PopOntoCurrentFrom(UndoStack *uk) { SS.ReloadAllImported(); SS.GenerateAll(0, INT_MAX); SS.ScheduleShowTW(); + + // Activate the group that was active before. + Group *activeGroup = SK.group.FindById(SS.GW.activeGroup); + activeGroup->Activate(); } void SolveSpaceUI::UndoClearStack(UndoStack *uk) {