Use + between keys in help texts
This commit is contained in:
parent
6642d4a4f4
commit
3b466c2d19
1 changed files with 2 additions and 2 deletions
|
@ -393,7 +393,7 @@ L.U.FeatureMixin = {
|
||||||
let items = ['-']
|
let items = ['-']
|
||||||
if (this.map.editedFeature !== this) {
|
if (this.map.editedFeature !== this) {
|
||||||
items.push({
|
items.push({
|
||||||
text: L._('Edit this feature') + ' (⇧-click)',
|
text: L._('Edit this feature') + ' (⇧+click)',
|
||||||
callback: this.edit,
|
callback: this.edit,
|
||||||
context: this,
|
context: this,
|
||||||
iconCls: 'umap-edit',
|
iconCls: 'umap-edit',
|
||||||
|
@ -401,7 +401,7 @@ L.U.FeatureMixin = {
|
||||||
}
|
}
|
||||||
items = items.concat(
|
items = items.concat(
|
||||||
{
|
{
|
||||||
text: L._("Edit feature's layer") + ' (Ctrl-⇧-click)',
|
text: L._("Edit feature's layer") + ' (Ctrl+⇧+click)',
|
||||||
callback: this.datalayer.edit,
|
callback: this.datalayer.edit,
|
||||||
context: this.datalayer,
|
context: this.datalayer,
|
||||||
iconCls: 'umap-edit',
|
iconCls: 'umap-edit',
|
||||||
|
|
Loading…
Reference in a new issue