The followin code is not working as expected in the app:
import mercury as mr
a = mr.Numeric(value=30, min=0, max=90, step=1)
b = mr.Button(label="Go")
if not b.clicked:
mr.Stop()
c = mr.Button(label="Show")
if c.clicked:
print(a.value)
If I first change the value of Numeric, then push the "Go" button, then press "Show" button, the value of numeric is not printed and the "Show" button disappears.
If I use Slider instead of Numeric, everything works fine.
Thank you @ppv-mipt for reporting the issue and thank you for code to reproduce the bug. I will take a look at it. Are you able to continue with Slider in your app?
The followin code is not working as expected in the app:
If I first change the value of Numeric, then push the "Go" button, then press "Show" button, the value of numeric is not printed and the "Show" button disappears. If I use Slider instead of Numeric, everything works fine.