mirror of
https://github.com/TomSchimansky/CustomTkinter.git
synced 2023-08-10 21:13:13 +03:00
fixed scaling issues for combobox and optionemnu, chatched error in appearance_mode_tracker
This commit is contained in:
11
test/manual_integration_tests/test_textbox.py
Normal file
11
test/manual_integration_tests/test_textbox.py
Normal file
@@ -0,0 +1,11 @@
|
||||
import customtkinter
|
||||
|
||||
app = customtkinter.CTk()
|
||||
app.grid_rowconfigure(0, weight=1)
|
||||
app.grid_columnconfigure(0, weight=1)
|
||||
|
||||
textbox = customtkinter.CTkTextbox(app)
|
||||
textbox.grid(row=0, column=0, padx=20, pady=20, sticky="nsew")
|
||||
|
||||
|
||||
app.mainloop()
|
||||
Reference in New Issue
Block a user