Make ctrl-shift-click work on MacOS too
This commit is contained in:
parent
3cee4fda01
commit
58cf784b7e
1 changed files with 1 additions and 1 deletions
|
@ -333,7 +333,7 @@ L.U.FeatureMixin = {
|
|||
this.view(e)
|
||||
} else if (!this.isReadOnly()) {
|
||||
if (e.originalEvent.shiftKey) {
|
||||
if (e.originalEvent.ctrlKey) {
|
||||
if (e.originalEvent.ctrlKey || e.originalEvent.metaKey) {
|
||||
this.datalayer.edit(e)
|
||||
} else {
|
||||
if (this._toggleEditing) this._toggleEditing(e)
|
||||
|
|
Loading…
Reference in a new issue