From adb179154afbb59052a43b13b034ef6c8f0a5d74 Mon Sep 17 00:00:00 2001 From: volzhs Date: Wed, 18 Jul 2018 02:19:05 +0900 Subject: [PATCH] Fix Label autowrap clips text --- scene/gui/label.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scene/gui/label.cpp b/scene/gui/label.cpp index 9af479c1ccf..0b36e1663c0 100644 --- a/scene/gui/label.cpp +++ b/scene/gui/label.cpp @@ -75,7 +75,7 @@ void Label::_notification(int p_what) { if (p_what == NOTIFICATION_DRAW) { - if (clip || autowrap) { + if (clip) { VisualServer::get_singleton()->canvas_item_set_clip(get_canvas_item(), true); }