From: nicolas b. <sl1...@gm...> - 2025-10-07 16:48:35
|
Hi, You’re right it is the case. With macOS 26 I had to adapt my bg COLOUR Best regards, Nicolas Le mar. 7 oct. 2025 à 18:35, Andrew Murray <rad...@gm...> a écrit : > Hi. Using Tcl 8.6.17 from Python on macOS Sequoia and Tahoe, I find that > Sequoia has a gray background, but Tahoe has a white background. This may > well be intentional, and an accepted part of Apple's updated designs, but I > just wanted to check if that is the case? Or is it something of a bug that > a future Tcl will address? Thanks > > import tkinter as tk > from tkinter import ttk > > root = tk.Tk() > root.geometry("200x100") > > main_frame = ttk.Frame(root, padding=20, borderwidth=2) > main_frame.pack(fill="both", expand=True) > > label = ttk.Label(main_frame, text="Label") > label.pack() > > root.mainloop() > > _______________________________________________ > Tcl-mac mailing list > tc...@li... > https://lists.sourceforge.net/lists/listinfo/tcl-mac > |