updated changelog

This commit is contained in:
Tom Schimansky 2022-10-05 18:51:42 +02:00
parent 0cbec6fea1
commit 4e20fb01d7
3 changed files with 1 additions and 2 deletions

View File

@ -12,6 +12,7 @@ ToDo:
## Unreleased - 2022-10-2 ## Unreleased - 2022-10-2
### Added ### Added
- added .cget() method to all widgets and windows - added .cget() method to all widgets and windows
- added CTkTextbox with automatic x and y scrollbars, corner_radius, border_width, border_spacing
### Changed ### Changed
- changed 'text_font' attribute to 'font' in all widgets - changed 'text_font' attribute to 'font' in all widgets

View File

View File

@ -127,8 +127,6 @@ class App(customtkinter.CTk):
self.progressbar_1.start() self.progressbar_1.start()
self.textbox.insert("1.0", "CTkTextbox\n\n" + "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.\n\n" * 20) self.textbox.insert("1.0", "CTkTextbox\n\n" + "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.\n\n" * 20)
self.textbox.configure(border_width=5, corner_radius=5, wrap="none")
self.radiobutton_frame.configure(border_width=3)
def open_input_dialog(self): def open_input_dialog(self):
dialog = customtkinter.CTkInputDialog(master=self, text="Type in a number:", title="CTkInputDialog") dialog = customtkinter.CTkInputDialog(master=self, text="Type in a number:", title="CTkInputDialog")