diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-07-09 08:31:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-09 08:31:20 +0200 |
commit | 24c462b974ed45be85a7026960482dfcc7b54010 (patch) | |
tree | f3fdc1642423d1f4b0e01eed327315e253e6eee1 /scene/gui/control.cpp | |
parent | 2fd902a08fdce6a1dc7abd2ea2d9a0c13cb21d76 (diff) | |
parent | ff7184c5cb501cb1674e2547fc31bbb9975cc0f2 (diff) | |
download | redot-engine-24c462b974ed45be85a7026960482dfcc7b54010.tar.gz |
Merge pull request #30443 from Calinou/improve-node-configuration-warnings
Improve the node configuration warning display
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 eccd42cb9f..26be17f6c1 100644 --- a/scene/gui/control.cpp +++ b/scene/gui/control.cpp @@ -2711,7 +2711,7 @@ String Control::get_configuration_warning() const { if (data.mouse_filter == MOUSE_FILTER_IGNORE && data.tooltip != "") { if (warning != String()) { - warning += "\n"; + warning += "\n\n"; } warning += TTR("The Hint Tooltip won't be displayed as the control's Mouse Filter is set to \"Ignore\". To solve this, set the Mouse Filter to \"Stop\" or \"Pass\"."); } |