From 921725ef57a3388eb0b17f30300b47823c2793a0 Mon Sep 17 00:00:00 2001 From: Aivar Annamaa Date: Sat, 22 Apr 2023 12:04:49 +0300 Subject: [PATCH] Don't force white text on active Aqua tabs Was required with older Tk version but not suitable with Ventura --- misc/style_katse.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/misc/style_katse.py b/misc/style_katse.py index 811a09b65..607b6dfa2 100644 --- a/misc/style_katse.py +++ b/misc/style_katse.py @@ -17,4 +17,7 @@ root.columnconfigure(0, weight=1) root.rowconfigure(0, weight=1) + +print("MAP", style.map("TNotebook.Tab")) +print("CONF", style.configure("TNotebook.Tab")) root.mainloop()