mirror of
https://github.com/TomSchimansky/CustomTkinter.git
synced 2023-08-10 21:13:13 +03:00
updated changelog
This commit is contained in:
parent
0cbec6fea1
commit
4e20fb01d7
@ -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
|
||||||
|
0
customtkinter/widgets/ctk_tabview.py
Normal file
0
customtkinter/widgets/ctk_tabview.py
Normal 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")
|
||||||
|
Loading…
Reference in New Issue
Block a user