updated documentation images

This commit is contained in:
Tom Schimansky 2021-08-25 17:33:44 +02:00
parent ccd1040329
commit b4f8166940
6 changed files with 15 additions and 3 deletions

View File

@ -21,7 +21,7 @@ To use CustomTkinter, just place the /customtkinter folder from this repository
next to your program, or **install the module with pip**:
```
pip install customtkinter
pip3 install customtkinter
```
PyPI: https://pypi.org/project/customtkinter/

View File

@ -15,8 +15,8 @@ class CTkCheckBox(tkinter.Frame):
hover_color=CTkColorManager.MAIN_HOVER,
border_color=CTkColorManager.CHECKBOX_LINES,
border_width=3,
width=24,
height=24,
width=25,
height=25,
corner_radius=5,
text_font=None,
text_color=CTkColorManager.TEXT,

Binary file not shown.

Before

Width:  |  Height:  |  Size: 281 KiB

After

Width:  |  Height:  |  Size: 659 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 264 KiB

After

Width:  |  Height:  |  Size: 673 KiB

View File

@ -62,6 +62,10 @@ class App(tkinter.Tk):
corner_radius=8)
self.button_3.place(relx=0.5, y=150, anchor=tkinter.CENTER)
self.check_box_1 = customtkinter.CTkCheckBox(master=self.frame_left,
text="CTkCheckBox")
self.check_box_1.place(relx=0.5, rely=0.92, anchor=tkinter.CENTER)
# ============ frame_right ============
self.frame_info = customtkinter.CTkFrame(master=self.frame_right,

View File

@ -1,6 +1,14 @@
from setuptools import setup
import os
# Update in pypi:
#
# 1. delete old /dist
# 2. python3 -m pip install --upgrade build
# 3. python3 -m build
# 4. python3 -m twine upload dist/*
#
def read(filename):
try: