Terry J. Reedy <tjre...@udel.edu> added the comment:

ttk Label backgrounds work fine on Windows and, possibly, Linux (Serhiy?), and 
even, possibly with tcl/tk 8.6 on macOS (Ned?).  tk 8.6 for macOS has gotten 
several bug fixes.  C.D., please download and try out the python.org 3.7.0b3 
macOS installer.  It included and will install for Python's use the current 
tcl/tk 8.6.x bugfix release.

import tkinter as tk
from tkinter import ttk
r = tk.Tk()
l = ttk.Label(r, text='colored label', background='red')
l.pack()
r.mainloop()  # if not in IDLE

We obviously should not remove something that works as intended on some systems.

----------
components: +macOS
nosy: +ned.deily, ronaldoussoren, serhiy.storchaka, terry.reedy
title: ttk modules Label class does not respect background config option -> 
Tkinter ttk Label background ignored on MacOS
versions: +Python 3.7, Python 3.8

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue33373>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to