|
From: <no...@tc...> - 2025-10-27 11:33:36
|
Automated mail by fx, on behalf of no...@tc... Ticket Change [d49dc5ab2c3f6bf8738c9dc5fae219598c0eb1ba69676032b3607dc1a40628bd] [Tabs on macOS have noticable visual overlap/cutoff issues] By anonymous For Tk On 2025-10-27T11:27:53.760 Details https://core.tcl-lang.org/tk/tinfo?name=d49dc5ab2c3f6bf8738c9dc5fae219598c0eb1ba69676032b3607dc1a40628bd Ticket https://core.tcl-lang.org/tk/tktview/1b33bbae49cc36e4ff595d5f52c601baac2610ac Changed Fields comment: Tabs on macOS visibly overlap with each other, and the right-most tab is cut off. Here's an image of the issue: <https://i.sstatic.net/M6fvFM7p.png> Example code to reproduce the issue: ```python from tkinter import * from tkinter import ttk root = Tk() root.geometry("400x600") notebook = ttk.Notebook(root) first_tab = ttk.Frame(notebook) notebook.add(first_tab, text="one") second_tab = ttk.Frame(notebook) notebook.add(second_tab, text="two") third_tab = ttk.Frame(notebook) notebook.add(third_tab, text="three") notebook.pack(fill="both", expand=1) root.mainloop() ``` (Image and example code are from <https://stackoverflow.com/q/79761277/4901968>, but the issue also reproduces on my machine running macOS Sonoma 14.8 with the example code, IDLE's settings GUI, and my own application.) login: anonymous ------------------------------------------------------------ See Tcl/Tk development @ http://core.tcl-lang.org/ ------------------------------------------------------------ |