HanSolo/SteelSeries-Canvas

setAltValue in MultiDisplay not working

XaroRSA opened this issue · 1 comments

Orginal code:
this.setAltValue = function (altValue) {
if (altValue !== altValue) {
altValue = altValue;
this.repaint();
}
return this;
};

When I tried this, it never changed value.

Fixed Code:
this.setAltValue = function (altValueNew) {
if (altValueNew !== altValue) {
altValue = altValueNew;
this.repaint();
}
return this;
};

Thankyoucomeagain

Thanks for the report, fixed in v0.14.12