Dima Tepliakov

Results 12 comments of Dima Tepliakov

> Try to make it non resizable using `root.resizable(False, False)`. Dear @Akascape, thanks for advise. But I already tried it and unfortunately it did not fixed it.

> @DimaTepliakov, This is because the `ttkbootstrap` tries to modify the color of the widgets placed in the main window. To efficiently change the color, ttkbootstrap recommends to use `Window()`...

> > > @DimaTepliakov, This is because the `ttkbootstrap` tries to modify the color of the widgets placed in the main window. To efficiently change the color, ttkbootstrap recommends to...

I've improved the `_applying_position` function, ensuring that every anchor now functions correctly: ```python def _applying_position(self): self.toplevel.update_idletasks() self.toplevel.wm_overrideredirect(True) screen_w = self.toplevel.winfo_screenwidth() screen_h = self.toplevel.winfo_screenheight() top_w = self.toplevel.winfo_reqwidth() top_h = self.toplevel.winfo_reqheight() padding_height...

@dipeshSam Nice! with this updated version there is not issues with the anchor position, all of them works perfectly!

> Hi @DimaTepliakov, I'm trying to create similar view when button clicked need to change the frame. Can you help me how did you created this view with sample code...

> > > Hi @DimaTepliakov, I'm trying to create similar view when button clicked need to change the frame. Can you help me how did you created this view with...

> @DimaTepliakov Probably a bug. You can also use the geometry method to resize the window. `self.geometry(f"{frame_width}x{frame_height}")`. But for this you have to calculate the right + left frame's width...

@Akascape Nice one! Unfortunately the text color of the buttons does not match the 'Light' appearance mode: ![image](https://github.com/TomSchimansky/CustomTkinter/assets/69217590/1ae00c13-2935-4814-8382-dd8295c224dc) How can it be changed so that it is adjusted to two...