Dipesh Samrāwat
Dipesh Samrāwat
For instant fix, you can update them manually catching an update call by overriding `_set_appearance_mode(self, mode_string)` method of the class.
It is not the case. Could you please demonstrate it? Regards.
Don't pass the state "disabled" in constructor, if you do so, you will have needed to update or configure it back to the normal again. Instead, you may try the...
You are most welcome, brother. 😊 Regards.
@sp5677 **You can use it.** Including OpenCV library with customtkinter package is not ideal.
@sp5677 Use class oriented approach with proper modularization ensuring safety and it is fine.
The thread https://github.com/TomSchimansky/CustomTkinter/discussions/900#discussioncomment-4478966 may be helpful to you. Regards.
Did you try it with scaling **manually**? For example: ``` Python from customtkinter import CTk, CTkLabel from customtkinter import set_window_scaling, set_widget_scaling if __name__ == "__main__": app = CTk() app.geometry("500x300") set_window_scaling(2)...
Oh! @TomSchimansky should take a look into this matter.
@63OR63 Try to update it after its check (i.e., after 200 ms). Try the following updated code: ``` Python try: resource_path = base_path / APP_ICONS["png"] sefl._tkimg = tk.PhotoImage(file=resource_path) self.after(250, lambda:...