hayashi311 / Color-Picker-for-iOS

Colorful: iOS color picker built with Swift.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NaN with HRBrightnessSlider

wakespeak opened this issue · comments

I have had to make this change to avoid my app crashing

Line 191:

if (brightnessCursorX < 0 || isnan(brightnessCursorX)) {
return;
}

(Added NaN check). The problem occurs during setting the color for refreshing the view with new data, via an async queue.