Browse Source

Merge pull request #9666 from toger5/betterFocusCanvasEditor

Focus box size fix for new theme
Rémi Verschelde 8 years ago
parent
commit
4680effcb3
1 changed files with 0 additions and 5 deletions
  1. 0 5
      editor/plugins/canvas_item_editor_plugin.cpp

+ 0 - 5
editor/plugins/canvas_item_editor_plugin.cpp

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