From fec3797262c67e4a7a612e6f1569127569e6f51e Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Thu, 21 Mar 2013 00:48:08 -0400 Subject: Don't forget to re-paint after undo / redo. Change-Id: If4914265ce2ed2e614d4887cc12f15eb97bd076f --- sc/source/ui/undo/undocell.cxx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'sc/source/ui/undo') diff --git a/sc/source/ui/undo/undocell.cxx b/sc/source/ui/undo/undocell.cxx index 0fbeb51cd545..023245a1bc3b 100644 --- a/sc/source/ui/undo/undocell.cxx +++ b/sc/source/ui/undo/undocell.cxx @@ -469,6 +469,7 @@ void ScUndoSetCell::Undo() { BeginUndo(); SetValue(maOldValue); + pDocShell->PostPaintCell(maPos); EndUndo(); } @@ -476,6 +477,7 @@ void ScUndoSetCell::Redo() { BeginRedo(); SetValue(maNewValue); + pDocShell->PostPaintCell(maPos); EndRedo(); } -- cgit