Expand lines on highlight, fix EditorLabel highlight attempt

This commit is contained in:
Ian Gulliver
2019-07-10 23:51:14 +00:00
parent c52f93d6d2
commit 591d4814a7
3 changed files with 8 additions and 1 deletions

View File

@@ -81,6 +81,12 @@ class EditorLabel extends EditorEntryBase {
e.stopPropagation();
e.preventDefault();
break;
case ' ':
// We don't support highlighting, but stop propagation
e.stopPropagation();
e.preventDefault();
break;
}
}