UI: Fix inconsistent menu background padding

Remove slight (2 pixels) extra padding at bottom of menus.

Pull Request: https://projects.blender.org/blender/blender/pulls/111826
This commit is contained in:
Leon Schittek
2023-09-08 17:43:33 +02:00
committed by Harley Acheson
parent e7f1647785
commit cc1c38f74d

View File

@@ -2825,11 +2825,9 @@ static void widget_menu_back(
}
else if (direction == UI_DIR_DOWN) {
roundboxalign = (UI_CNR_BOTTOM_RIGHT | UI_CNR_BOTTOM_LEFT);
rect->ymin -= 0.1f * U.widget_unit;
}
else if (direction == UI_DIR_UP) {
roundboxalign = UI_CNR_TOP_LEFT | UI_CNR_TOP_RIGHT;
rect->ymax += 0.1f * U.widget_unit;
}
GPU_blend(GPU_BLEND_ALPHA);