mirror of
https://github.com/TomSchimansky/CustomTkinter.git
synced 2023-08-10 21:13:13 +03:00
added screenshots for Windows
This commit is contained in:
@ -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",
|
||||
|
@ -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:
|
||||
|
@ -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:
|
||||
|
Reference in New Issue
Block a user