1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-11 13:10:58 +00:00

focus box size fix for new theme

This commit is contained in:
toger5
2017-07-16 20:07:06 +02:00
parent 4366b7c8b0
commit 7556aacb03

View File

@@ -1897,11 +1897,6 @@ void CanvasItemEditor::_viewport_draw() {
if (viewport->has_focus()) {
Size2 size = viewport->get_size();
if (v_scroll->is_visible_in_tree())
size.width -= v_scroll->get_size().width;
if (h_scroll->is_visible_in_tree())
size.height -= h_scroll->get_size().height;
get_stylebox("Focus", "EditorStyles")->draw(ci, Rect2(Point2(), size));
}