diff options
author | neikeq <ignalfonsore@gmail.com> | 2015-12-02 08:19:33 +0100 |
---|---|---|
committer | neikeq <ignalfonsore@gmail.com> | 2015-12-02 08:19:33 +0100 |
commit | c5698fc28edf7ff01a5c160aa3d4298d024e79ce (patch) | |
tree | aac5092f40820cd4ee3bbcc60a1e8ee2066f37c6 /scene/gui | |
parent | f1f3468f70c85c33f630042670b47401eeee6092 (diff) |
Fix RichTextLabel copy never called
Diffstat (limited to 'scene/gui')
-rw-r--r-- | scene/gui/rich_text_label.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/rich_text_label.cpp b/scene/gui/rich_text_label.cpp index 3b0425b223..552d8789a6 100644 --- a/scene/gui/rich_text_label.cpp +++ b/scene/gui/rich_text_label.cpp @@ -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: { |