Commit ad5c0e59 authored by Dorchies David's avatar Dorchies David
Browse files

Closes nghyd#85

Showing with 4 additions and 2 deletions
+4 -2
{
"name": "jalhyd",
"version": "1.0.0",
"version": "1.1.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
......
......@@ -122,7 +122,9 @@ export class ParamValueIterator implements INumberIterator {
// min/max
case 1:
const end = this._reverse ? this._index < this._param.min : this._index > this._param.max;
const end = this._reverse ?
this._index < this._param.min - this._param.step * 1E-7 :
this._index > this._param.max + this._param.step * 1E-7;
return !end;
// liste
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment