Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2012-03-11 10:24:47 +0000
committerStijn Buys <ingar@osirion.org>2012-03-11 10:24:47 +0000
commit7c17b396474fc3783664dbd4da86548389825ea3 (patch)
treee03912e0c13d903c783401fda9f489899a3c1339
parentafc4da71f0c8ebc489245af23284491f9437efee (diff)
Update Manipulater visual state after deselecting.
-rw-r--r--src/mapwidget.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mapwidget.cc b/src/mapwidget.cc
index 581f57f..f5dd595 100644
--- a/src/mapwidget.cc
+++ b/src/mapwidget.cc
@@ -137,8 +137,9 @@ void MapWidget::deselect()
}
mapwidget_selected = 0;
- emit propertiesChanged(0);
+ emit propertiesChanged(0);
mapwidget_manipulator->setMode(Manipulator::None);
+ mapwidget_manipulator->update();
}
void MapWidget::dragEntity(EntityWidget *entity, int x, int y)