Consider the following code
*using Reactive, Interactα = Input(0)togglebuttons(["one" => 1, "two" => 2], signal=α)signal(α)*I would expect the value of *α *to change after executing the *togglebuttons*(..) line, however this is not the case. *signal(α) *on the next line shows that *α *is still 0, even though one of the buttons is pre-selected. One has to press the buttons at least once to change the value of *α*. Can this behaviour be changed? Is it a bug?
