mirror of
https://github.com/TomSchimansky/CustomTkinter.git
synced 2023-08-10 21:13:13 +03:00
fixed dropdown menu configuring
This commit is contained in:
@ -1,8 +1,8 @@
|
||||
import customtkinter
|
||||
|
||||
customtkinter.set_widget_scaling(0.9)
|
||||
customtkinter.set_window_scaling(0.9)
|
||||
customtkinter.set_spacing_scaling(0.9)
|
||||
#customtkinter.set_widget_scaling(0.9)
|
||||
#customtkinter.set_window_scaling(0.9)
|
||||
#customtkinter.set_spacing_scaling(0.9)
|
||||
|
||||
customtkinter.set_appearance_mode("dark")
|
||||
|
||||
@ -99,5 +99,5 @@ scrollbar4 = customtkinter.CTkScrollbar(app, command=textbox_4.yview)
|
||||
scrollbar4.grid(row=0, column=5, sticky="nsew")
|
||||
textbox_4.configure(yscrollcommand=scrollbar4.set)
|
||||
|
||||
app.after(3000, lambda: customtkinter.set_appearance_mode("light"))
|
||||
# app.after(3000, lambda: customtkinter.set_appearance_mode("light"))
|
||||
app.mainloop()
|
||||
|
Reference in New Issue
Block a user