Fix scaling issue for texture button focus texture.

This commit is contained in:
K. S. Ernest (iFire) Lee 2019-03-15 01:22:51 -07:00
parent 775e74e0d4
commit 1971c09e5e
1 changed files with 1 additions and 2 deletions

View File

@ -223,8 +223,7 @@ void TextureButton::_notification(int p_what) {
} }
if (has_focus() && focused.is_valid()) { if (has_focus() && focused.is_valid()) {
Rect2 drect(Point2(), get_size()); draw_texture_rect(focused, _position_rect, false);
draw_texture_rect(focused, drect, false);
}; };
} break; } break;
} }