1
0
mirror of https://github.com/psychopy/psychojs.git synced 2025-05-10 10:40:54 +00:00

added taking into account the availability of rating value when reconstructing the stim;

This commit is contained in:
lgtst 2022-05-24 23:42:57 +03:00
parent 24ceb40491
commit aaddd07065

View File

@ -932,9 +932,10 @@ export class Slider extends util.mix(VisualStim).with(ColorMixin, WindowMixin)
// marker:
this._marker = new PIXI.Graphics();
if (Number.isFinite(this._startValue))
const markerVal = Number.isFinite(this._rating) ? this._rating : (Number.isFinite(this._startValue) ? this._startValue : undefined);
if (Number.isFinite(markerVal))
{
this._markerPos = this._granularise(this._startValue);
this._markerPos = this._granularise(markerVal);
const visibleMarkerPos = this._ratingToPos([this._markerPos]);
this._marker.position = to_pixiPoint(visibleMarkerPos[0], this.units, this.win, true);
}