Fix CTRL+V doesn't work properly in inspector textedit

This commit is contained in:
jmb462 2021-08-30 17:33:01 +02:00
parent efc87481e4
commit 91974057a5

View file

@ -795,7 +795,7 @@ void EditorProperty::gui_input(const Ref<InputEvent> &p_event) {
}
void EditorProperty::unhandled_key_input(const Ref<InputEvent> &p_event) {
if (!selected) {
if (!selected || !p_event->is_pressed()) {
return;
}