diff options
author | kobewi <kobewi4e@gmail.com> | 2020-12-13 20:16:56 +0100 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2020-12-13 20:16:56 +0100 |
commit | a3a31591b53da6a79f37760d0e7ee34d6d4e4ee6 (patch) | |
tree | 62362ddfed0a61955ebcbb82dece170bdb072119 /scene/gui/control.cpp | |
parent | 06314c1b0e8100546a53cf2786fa244c5d19af6f (diff) | |
download | redot-engine-a3a31591b53da6a79f37760d0e7ee34d6d4e4ee6.tar.gz |
Allow to override drop data in LineEdit
Diffstat (limited to 'scene/gui/control.cpp')
-rw-r--r-- | scene/gui/control.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/control.cpp b/scene/gui/control.cpp index b471bb9d4e..6a66234d11 100644 --- a/scene/gui/control.cpp +++ b/scene/gui/control.cpp @@ -709,7 +709,7 @@ bool Control::can_drop_data(const Point2 &p_point, const Variant &p_data) const } } - return Variant(); + return false; } void Control::drop_data(const Point2 &p_point, const Variant &p_data) { |