Re: tkinter (ttk) combobox dropdown text is white on white

2018-06-05 Thread MRAB
On 2018-06-06 02:42, Terry Reedy wrote: On 6/3/2018 3:54 PM, Jim Lee wrote: Given the following snippet (Python 3.6.5, Tk 8.6.8): What OS? Likely not Windows Already answered: Linux (Fedora 28, MATE desktop). import tkinter as tk from tkinter import ttk root = tk.Tk() cb = ttk.Combobox(ro

Re: tkinter (ttk) combobox dropdown text is white on white

2018-06-05 Thread Terry Reedy
On 6/3/2018 3:54 PM, Jim Lee wrote: Given the following snippet (Python 3.6.5, Tk 8.6.8): What OS? Likely not Windows import tkinter as tk from tkinter import ttk root = tk.Tk() cb = ttk.Combobox(root) cb.grid(row=0, column=0, sticky='NSEW') cb['values'] = ['one', 'two', 'three', 'four'] roo

Re: tkinter (ttk) combobox dropdown text is white on white

2018-06-05 Thread Jim Lee
On 06/05/2018 12:21 AM, Peter Otten wrote: Jim Lee wrote: Oops, I hit "reply" instead of "reply-list" last time. Trying again... On 06/03/2018 02:01 PM, Christian Gollwitzer wrote: Am 03.06.18 um 21:54 schrieb Jim Lee:> import tkinter as tk from tkinter import ttk root = tk.Tk() cb = tt

Re: tkinter (ttk) combobox dropdown text is white on white

2018-06-05 Thread Peter Otten
Jim Lee wrote: > Oops, I hit "reply" instead of "reply-list" last time. Trying again... > > > On 06/03/2018 02:01 PM, Christian Gollwitzer wrote: >> Am 03.06.18 um 21:54 schrieb Jim Lee:> import tkinter as tk >>> from tkinter import ttk >>> >>> root = tk.Tk() >>> cb = ttk.Combobox(root) >>> cb.

Re: tkinter (ttk) combobox dropdown text is white on white

2018-06-04 Thread Jim Lee
Oops, I hit "reply" instead of "reply-list" last time.  Trying again... On 06/03/2018 02:01 PM, Christian Gollwitzer wrote: Am 03.06.18 um 21:54 schrieb Jim Lee:> import tkinter as tk from tkinter import ttk root = tk.Tk() cb = ttk.Combobox(root) cb.grid(row=0, column=0, sticky='NSEW') cb['va

Re: tkinter (ttk) combobox dropdown text is white on white

2018-06-03 Thread Christian Gollwitzer
Am 03.06.18 um 21:54 schrieb Jim Lee:> import tkinter as tk from tkinter import ttk root = tk.Tk() cb = ttk.Combobox(root) cb.grid(row=0, column=0, sticky='NSEW') cb['values'] = ['one', 'two', 'three', 'four'] root.mainloop() The text of the values in the combobox dropdown list is white on whi

tkinter (ttk) combobox dropdown text is white on white

2018-06-03 Thread Jim Lee
Given the following snippet (Python 3.6.5, Tk 8.6.8): import tkinter as tk from tkinter import ttk root = tk.Tk() cb = ttk.Combobox(root) cb.grid(row=0, column=0, sticky='NSEW') cb['values'] = ['one', 'two', 'three', 'four'] root.mainloop() The text of the values in the combobox dropdown list i