Fix: Add missing border_width to CTkFrame in custom themes

This commit is contained in:
Ramforth
2025-11-03 00:49:59 +01:00
parent dd37b38498
commit 2f773657a1
2 changed files with 4 additions and 2 deletions

View File

@@ -5,7 +5,8 @@
"CTkFrame": { "CTkFrame": {
"fg_color": ["#121212", "#121212"], "fg_color": ["#121212", "#121212"],
"border_color": ["#333333", "#333333"], "border_color": ["#333333", "#333333"],
"corner_radius": 8 "corner_radius": 8,
"border_width": 0
}, },
"CTkLabel": { "CTkLabel": {
"text_color": ["#ecd7b2", "#ecd7b2"], "text_color": ["#ecd7b2", "#ecd7b2"],

View File

@@ -5,7 +5,8 @@
"CTkFrame": { "CTkFrame": {
"fg_color": ["#ecd7b2", "#ecd7b2"], "fg_color": ["#ecd7b2", "#ecd7b2"],
"border_color": ["#cccccc", "#cccccc"], "border_color": ["#cccccc", "#cccccc"],
"corner_radius": 8 "corner_radius": 8,
"border_width": 0
}, },
"CTkLabel": { "CTkLabel": {
"text_color": ["#000000", "#000000"], "text_color": ["#000000", "#000000"],