mirror of
https://github.com/TomSchimansky/CustomTkinter.git
synced 2023-08-10 21:13:13 +03:00
added corner_radius to .configure() of CTkButton
This commit is contained in:
parent
db4f5ec919
commit
6a43dfd9bf
@ -252,6 +252,10 @@ class CTkButton(CTkBaseClass):
|
||||
self.image = kwargs.pop("image")
|
||||
require_redraw = True
|
||||
|
||||
if "corner_radius" in kwargs:
|
||||
self.corner_radius = kwargs.pop("corner_radius")
|
||||
require_redraw = True
|
||||
|
||||
if "compound" in kwargs:
|
||||
self.compound = kwargs.pop("compound")
|
||||
require_redraw = True
|
||||
|
Loading…
Reference in New Issue
Block a user