mirror of
https://github.com/TomSchimansky/CustomTkinter.git
synced 2023-08-10 21:13:13 +03:00
fixed scrollable frame mouse wheel on linux #1356
This commit is contained in:
@ -26,7 +26,7 @@ frame_4.configure(label_text="CTkScrollableFrame")
|
||||
frame_5 = customtkinter.CTkScrollableFrame(app, orientation="vertical", label_text="CTkScrollableFrame", corner_radius=0)
|
||||
frame_5.grid(row=0, column=2, rowspan=2, sticky="nsew")
|
||||
|
||||
for i in range(100):
|
||||
for i in range(20):
|
||||
customtkinter.CTkCheckBox(frame_1).grid(row=i, padx=10, pady=10)
|
||||
customtkinter.CTkCheckBox(frame_2).grid(row=i, padx=10, pady=10)
|
||||
customtkinter.CTkCheckBox(frame_3).grid(row=0, column=i, padx=10, pady=10)
|
||||
|
Reference in New Issue
Block a user