Continue button initially disabled
In the following program the continue button is initially disabled while it should be enabled. Changing the value of the editor to Cons2 and then back to Cons1 does enable the continue button.
Seems to be related to #99 (closed). Before the patch for this issue it still worked.
module test
import iTasks
derive class iTask T
:: T = Cons1 | Cons2 Int | Cons3 Int
Start :: *World -> *World
Start world = startEngine (upd >>= view) world
where
upd :: Task T
upd = updateInformation "" [] Cons1
view :: T -> Task T
view t = viewInformation "" [] t