I have crated a button box in tkinter using this:
v = StringVar()
v.set("L")
b1 = tk.Radiobutton(root, text="1", variable=v, value=1, indicatoron=0, bg="red")
The button is red BUT as I click on it it turns white. How can I fix is? I want it to be red all the time. Thank You :)
activebackgroundoption to the same value asbg.