[apps/statistics] Unable the user to set the bar width with a INF/ NAN

value

Change-Id: I42963c034a269971c332888839b940ea9bdec3c1
This commit is contained in:
Émilie Feral
2016-12-27 14:17:23 +01:00
parent 8d94b4f26b
commit 95daa6ccc0

View File

@@ -32,7 +32,7 @@ float HistogramParameterController::parameterAtIndex(int index) {
void HistogramParameterController::setParameterAtIndex(int parameterIndex, float f) {
assert(parameterIndex >= 0 && parameterIndex < 2);
if (parameterIndex == 0) {
if (f <= 0.0f) {
if (f <= 0.0f || isnan(f) || isinf(f)) {
app()->displayWarning("Value interdite");
return;
}