From e8047e56d21df0c167a180afd5913ac4a8720270 Mon Sep 17 00:00:00 2001 From: Guilherme Felipe Date: Mon, 21 May 2018 16:57:37 -0300 Subject: [PATCH] [InspectorDock] Change label offset --- editor/editor_spin_slider.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/editor_spin_slider.cpp b/editor/editor_spin_slider.cpp index 087dcd649f..772e716991 100644 --- a/editor/editor_spin_slider.cpp +++ b/editor/editor_spin_slider.cpp @@ -173,7 +173,7 @@ void EditorSpinSlider::_notification(int p_what) { draw_style_box(sb, Rect2(Vector2(), get_size())); Ref font = get_font("font", "LineEdit"); - int avail_width = get_size().width - sb->get_minimum_size().width - sb->get_minimum_size().width; + int avail_width = get_size().width - sb->get_minimum_size().width; avail_width -= font->get_string_size(label).width; Ref updown = get_icon("updown", "SpinBox");