fix readonly background for combobox #983

This commit is contained in:
Tom Schimansky
2023-01-10 15:03:45 +01:00
parent fac2fa5e68
commit 79d5da439b
2 changed files with 2 additions and 1 deletions

View File

@ -201,6 +201,7 @@ class CTkComboBox(CTkBaseClass):
self._entry.configure(bg=self._apply_appearance_mode(self._fg_color),
fg=self._apply_appearance_mode(self._text_color),
readonlybackground=self._apply_appearance_mode(self._fg_color),
disabledbackground=self._apply_appearance_mode(self._fg_color),
disabledforeground=self._apply_appearance_mode(self._text_color_disabled),
highlightcolor=self._apply_appearance_mode(self._fg_color),