mirror of
https://github.com/TomSchimansky/CustomTkinter.git
synced 2023-08-10 21:13:13 +03:00
Added "text_color" to the textbox configure method
This commit is contained in:
parent
06332a1061
commit
f9c9dec707
@ -143,6 +143,10 @@ class CTkTextbox(CTkBaseClass):
|
|||||||
if isinstance(child, CTkBaseClass):
|
if isinstance(child, CTkBaseClass):
|
||||||
child.configure(bg_color=self.fg_color)
|
child.configure(bg_color=self.fg_color)
|
||||||
|
|
||||||
|
if "text_color" in kwargs:
|
||||||
|
self.text_color = kwargs.pop("text_color")
|
||||||
|
require_redraw = True
|
||||||
|
|
||||||
if "border_color" in kwargs:
|
if "border_color" in kwargs:
|
||||||
self.border_color = kwargs.pop("border_color")
|
self.border_color = kwargs.pop("border_color")
|
||||||
require_redraw = True
|
require_redraw = True
|
||||||
|
Loading…
x
Reference in New Issue
Block a user