Refactor GuiProgressbar for improved accuracy #2573
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
GuiProgressbar can fail to show pixels near the min and max values, such as for 98-100% power or coolant on the Power Management screen or the final jump drive charge points in the jump drive controls.
This appears to be caused by the GuiProgressbar being filled by a PNG with a transparent border of pixels, which become the only pixels rendered at these extremes, particularly on high-resolution displays.
This change retains the fill PNG rather than replacing it with a fill rect so that the bar fill image can still be replaced by mods or themes.
Before
Note how the jump, load, and unload bars appear to be full or empty but aren't.
After
Bars now reach their full extents, and values within 2-3% of empty or full are still visible.
Power Management screen sliders now overflow; the screen has numerous other layout issues (text overlapping controls, bar values not matching slider values) that can also be addressed separately.