summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/gui/undocommands.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gui/undocommands.cpp b/src/gui/undocommands.cpp
index 4c5d0dc..6d3162c 100644
--- a/src/gui/undocommands.cpp
+++ b/src/gui/undocommands.cpp
@@ -11,14 +11,16 @@ GraphUpdateCommand::GraphUpdateCommand(TikzScene *scene, QUndoCommand *parent) :
void GraphUpdateCommand::undo()
{
_scene->tikzDocument()->refreshTikz();
- _scene->refreshSceneBounds();
+ //refreshSceneBounds does nothing
+ //_scene->refreshSceneBounds();
_scene->invalidate();
}
void GraphUpdateCommand::redo()
{
_scene->tikzDocument()->refreshTikz();
- _scene->refreshSceneBounds();
+ //refreshSceneBounds does nothing
+ //_scene->refreshSceneBounds();
_scene->invalidate();
}