added screenshots for Windows

This commit is contained in:
Tom Schimansky
2021-11-10 23:18:04 +01:00
parent 4301419228
commit e6d71058aa
7 changed files with 22 additions and 4 deletions

View File

@ -17,7 +17,7 @@ class CTkCheckBox(tkinter.Frame):
border_width=3,
width=25,
height=25,
corner_radius=5,
corner_radius=4,
text_font=None,
text_color=CTkColorManager.TEXT,
text="CTkCheckBox",

View File

@ -136,7 +136,7 @@ class CTkProgressBar(tkinter.Frame):
else:
# ovals and rects are always rendered too large on Windows and need to be made smaller by -1
oval_bottom_right_shift = -1
rect_bottom_right_shift = -1
rect_bottom_right_shift = -0
# frame_border
if self.border_width > 0:

View File

@ -147,7 +147,7 @@ class CTkSlider(tkinter.Frame):
# ovals and rects are always rendered too large and need to be made smaller by -1
oval_bottom_right_shift = -1
rect_bottom_right_shift = -1
rect_bottom_right_shift = 0
# frame_border
if self.border_width > 0: