1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-07 19:53:17 +00:00

Fix Label autowrap clips text

This commit is contained in:
volzhs
2018-07-18 02:19:05 +09:00
parent abfa4b822b
commit adb179154a

View File

@@ -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);
}