mirror of https://github.com/godotengine/godot
Round icon position and size in buttons to make them look sharper
This commit is contained in:
parent
f5a89bf460
commit
62d14ca22d
|
|
@ -258,7 +258,8 @@ void Button::_notification(int p_what) {
|
|||
}
|
||||
|
||||
if (icon_region.size.width > 0) {
|
||||
draw_texture_rect_region(_icon, icon_region, Rect2(Point2(), _icon->get_size()), color_icon);
|
||||
Rect2 icon_region_rounded = Rect2(icon_region.position.round(), icon_region.size.round());
|
||||
draw_texture_rect(_icon, icon_region_rounded, false, color_icon);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue