New submission from Simon Holland:
tkinters radiobutton's have an option 'indicatoron=0' which should display
Radio Buttons as actual labelled buttons.
button = tk.Radiobutton(self, text=option, variable = var, value = answer,
indicatoron=0)
Screenshots of expected and
Changes by Simon Holland :
--
nosy: +gpolo, serhiy.storchaka
___
Python tracker
<http://bugs.python.org/issue28723>
___
___
Python-bugs-list mailing list
Unsub
Simon Holland added the comment:
Thank you
On 17 November 2016 at 15:29, Serhiy Storchaka
wrote:
>
> Serhiy Storchaka added the comment:
>
> Works to me on Linux (identical results with Tkinter and Tk). In any case
> if there is some bug on your platform, this is not Tkinter
Simon Holland added the comment:
FYI, it seems that the Tk team are unable to use cocoa for this
functionality so indicatoron has not worked on OSX for Radiobuttons or
Checkbuttons for over 4 years.
On 17 November 2016 at 18:21, Simon Holland wrote:
>
> Simon Holland added the c