From 6433c31002866ffcaf1c6fa7fe5b97b3953d4411 Mon Sep 17 00:00:00 2001 From: rolux Date: Mon, 10 Sep 2012 14:36:43 +0200 Subject: [PATCH] bugfix in map editor --- source/Ox.UI/js/Map/MapEditor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Ox.UI/js/Map/MapEditor.js b/source/Ox.UI/js/Map/MapEditor.js index b60b785f..253938f2 100644 --- a/source/Ox.UI/js/Map/MapEditor.js +++ b/source/Ox.UI/js/Map/MapEditor.js @@ -836,7 +836,7 @@ Ox.MapEditor = function(options, self) { }; self.$definePlaceButton.options({disabled: true, title: 'Clearing...'}); self.options.editPlace(values, function() { - self.$map.removePlace().options({selected: ''}); + self.$map.removePlace(); self.$list.reloadList(); self.$findPlaceButton.show(); self.$placeFlag.hide();