Clive Bostock

Results 38 comments of Clive Bostock

> Just changing the attributes like `button_1.border_width=3` will not change the border because there is more to it than just change the attribute values. The button has to be rendered,...

> For a change of the border_width you would have to call ._create_grid() and ._draw() at the moment, but this can change at any time. A little piece of me...

Just a word of warning. I tested the above solution, and if you have another scrollable widget in the frame, it is susceptible to the scrolling being concurrently activated. When...

> > will the scroll function still work on windows if I make those adjustments for my linux and package it later? > > If u are asking me then...

> Hi @TomSchimansky. > > Looking at the code for ctk_label.py, you appear to be checking to see whether someone has defined a "text_color_disabled" key in the theme JSON. However...

It appears centrally on my screen (Pycharm on Linux Mint): ![image](https://github.com/TomSchimansky/CustomTkinter/assets/89534395/83177c44-9227-4dc8-b796-01e8cdb46718)

Questions like this should be raised in the Discussions.

> to fix this issue you can use .lift() like this > > TopLevelOpj.after(100, TopLevelOpj.lift) > > in the end of TopLevel displaying function I just noticed that this was...

> @avalon60 Corner_radius in Label is not implemented in the configure options of Label. > > For now use `Label_1.corner_radius=0` This is not a good option for me. My code...