Fix ProgressBar Wrong Value with Border
Closes: #30969
The FG rectangle of the progressbar is incorrect when dealing with a non-zero border. This issue stems from wrong order of operations when drawing the rectangle: int p = r * get_size().width - mp;
(cherry picked from commit 7db96e22dd
)
This commit is contained in:
parent
1b05404dbf
commit
56b5af2ba7
|
@ -54,7 +54,7 @@ void ProgressBar::_notification(int p_what) {
|
|||
draw_style_box(bg, Rect2(Point2(), get_size()));
|
||||
float r = get_as_ratio();
|
||||
int mp = fg->get_minimum_size().width;
|
||||
int p = r * get_size().width - mp;
|
||||
int p = r * (get_size().width - mp);
|
||||
if (p > 0) {
|
||||
|
||||
draw_style_box(fg, Rect2(Point2(), Size2(p + fg->get_minimum_size().width, get_size().height)));
|
||||
|
|
Loading…
Reference in New Issue