From adb179154afbb59052a43b13b034ef6c8f0a5d74 Mon Sep 17 00:00:00 2001 From: volzhs Date: Wed, 18 Jul 2018 02:19:05 +0900 Subject: Fix Label autowrap clips text --- scene/gui/label.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scene') diff --git a/scene/gui/label.cpp b/scene/gui/label.cpp index 9af479c1cc..0b36e1663c 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); } -- cgit v1.2.3