Button click which is inside column doesnt trigger cell re-execution. The same might be for Tabs and Expander.
Example code:
cols = mr.Columns(2)
with cols[0]:
btn1 = mr.Button("test 1")
with cols[1]:
btn2 = mr.Button("test 2")
print(btn1.value, btn2.value)
Button click which is inside column doesnt trigger cell re-execution. The same might be for
TabsandExpander.Example code: