diff options
author | Stijn Buys <ingar@osirion.org> | 2012-03-11 10:24:47 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2012-03-11 10:24:47 +0000 |
commit | 7c17b396474fc3783664dbd4da86548389825ea3 (patch) | |
tree | e03912e0c13d903c783401fda9f489899a3c1339 | |
parent | afc4da71f0c8ebc489245af23284491f9437efee (diff) |
Update Manipulater visual state after deselecting.
-rw-r--r-- | src/mapwidget.cc | 3 |
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) |