mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
Birunthan Mohanathas
23f4a31bf0
Script: Fixed that the value of the Script measure is not reset when an error occurs.
In the following case, for example, the value of the measure used to remain 10 even after an error. Now it will default to 0 on error. function Initialize() i = 0 end function Update() if i < 5 then i = i + 1 return 10 else i() -- error here, execution stops return 2 end end
The file is empty.
Description