Merge pull request #2973 from neikeq/fix_help_copy

Fix RichTextLabel selection copying
This commit is contained in:
Rémi Verschelde 2015-12-02 08:25:47 +01:00
commit ce52160429

View file

@ -719,7 +719,7 @@ void RichTextLabel::_input_event(InputEvent p_event) {
case InputEvent::KEY: {
const InputEventKey &k=p_event.key;
if (k.pressed && !k.mod.alt && !k.mod.shift && !k.mod.command && !k.mod.meta) {
if (k.pressed && !k.mod.alt && !k.mod.shift && !k.mod.meta) {
bool handled=true;
switch(k.scancode) {
case KEY_PAGEUP: {