Don't show the inspector on multiselect (fixes #1600)

This commit is contained in:
John Firebaugh
2013-06-17 14:47:12 -07:00
parent 98072bdd27
commit 410e401b34

View File

@@ -104,10 +104,8 @@ iD.modes.Select = function(context, selectedIDs) {
}), true));
}
if (singular()) {
context.ui().sidebar
.select(singular().id, newFeature);
}
context.ui().sidebar
.select(singular() ? singular().id : null, newFeature);
context.history()
.on('undone.select', update)