mirror of
https://github.com/Drezil/imgui.git
synced 2024-11-15 01:17:00 +00:00
Apply fix from data_types branch, some widgets broken when format string doesn't contains a %. Broken by 92f0165f85
. Data_types branch fix c5fb929555
.
This commit is contained in:
parent
280c05e4f8
commit
ad2927888b
@ -8681,6 +8681,9 @@ static float GetMinimumStepAtDecimalPrecision(int decimal_precision)
|
||||
|
||||
float ImGui::RoundScalarWithFormat(const char* format, float value)
|
||||
{
|
||||
const char* fmt_start = ParseFormatTrimDecorationsLeading(format);
|
||||
if (fmt_start[0] != '%' || fmt_start[1] == '%') // Don't apply if the value is not visible in the format string
|
||||
return value;
|
||||
char buf[64];
|
||||
ImFormatString(buf, IM_ARRAYSIZE(buf), ParseFormatTrimDecorationsLeading(format), value);
|
||||
return (float)atof(buf);
|
||||
|
Loading…
Reference in New Issue
Block a user