Fix multiselect popup, map back button, RoadClass float crash
This commit is contained in:
+3
-1
@@ -1220,7 +1220,9 @@ document.addEventListener('DOMContentLoaded', function() {
|
||||
});
|
||||
|
||||
// Click on empty map area closes any open popup and clears selection
|
||||
map.on('click', function() {
|
||||
map.on('click', function(e) {
|
||||
if (multiSelectMode) return;
|
||||
if (e.originalEvent && e.originalEvent.shiftKey) return;
|
||||
clearSelection();
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user