diff options
author | Juan Linietsky <reduzio@gmail.com> | 2021-08-23 09:46:19 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-23 09:46:19 -0300 |
commit | a0ef77eaee427cf077ac884a8d3a956137ee615a (patch) | |
tree | 40bf21e1beae1a6883770d2ac0473222ff41ae65 /scene/gui/file_dialog.h | |
parent | 2d446771d6701bb77432b6df5a768e53c9a6c95d (diff) | |
parent | 5cecdfa8afb91a60305b429f5b738e27dadbc83f (diff) |
Merge pull request #51983 from reduz/remove-bind-vmethod
Entirely removes BIND_VMETHOD in favor of GDVIRTUAL
Diffstat (limited to 'scene/gui/file_dialog.h')
-rw-r--r-- | scene/gui/file_dialog.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/file_dialog.h b/scene/gui/file_dialog.h index 7fbafc4bb4..b5190bdab1 100644 --- a/scene/gui/file_dialog.h +++ b/scene/gui/file_dialog.h @@ -132,7 +132,7 @@ private: void _update_drives(); - void _unhandled_input(const Ref<InputEvent> &p_event); + virtual void unhandled_input(const Ref<InputEvent> &p_event) override; bool _is_open_should_be_disabled(); |