Dipesh Samrāwat

Results 74 comments of Dipesh Samrāwat

@63OR63 Yes, it's a known bug. But @TomSchimansky is currently not accepting any fixing PR https://github.com/TomSchimansky/CustomTkinter/pull/2162, so this version of this repository is being continued. To know more, read https://github.com/TomSchimansky/CustomTkinter/discussions/2343...

@Geo9999 Could you please have **Sample Reproducible Code** along with its visual output? Regards.

@Geo9999 The bug lies in your code misspelling. It is recommended that you should use proper naming conventions. Also, instead of passing object reference as `self`, you were passing the...

This is a valid problem. Before any new update, you may try the following solution: **Before Scene:** ![Scrollbar_Before](https://github.com/user-attachments/assets/36ac87ce-0533-434b-ac23-f9ebf19312f8) **Code example:** ``` Python from customtkinter import CTkScrollbar from customtkinter import CTk,...

CustomTkinter is not compatible with `ttkbootstrap`. Or, more specifically, `ttkbootstrap`'s internal mechanism is only supportive to native `Tkinter` applications. What actually happens is that `ttkbootstrap` uses `ttk` (Themed Tkinter) to...

Use Tkinter if you want to enjoy Bootstrap facilities. Regards.

CustomTkinter is not compatible with bootstrap at all. We can't use CustomTkinter in combination with bootstrap.

@TheRiddler2 When executing a time-consuming task within a loop, we need to use threading in order to make the GUI responsive. In Tkinter, the method `after()` is an effective way...