fixed Relief string

This commit is contained in:
paul
2025-01-01 16:43:25 +05:30
parent 27f7a753eb
commit ed333d6ee6

View File

@@ -569,7 +569,7 @@ export class TkinterWidgetBase extends TkinterBase{
config["bd"] = this.getAttrValue("styling.borderWidth")
if (this.getAttrValue("styling.relief"))
config["relief"] = `"${this.getAttrValue("styling.relief")}"`
config["relief"] = `tk.${this.getAttrValue("styling.relief")}`
if (this.getAttrValue("font.fontFamily") || this.getAttrValue("font.fontSize")){
config["font"] = `("${this.getAttrValue("font.fontFamily")}", ${this.getAttrValue("font.fontSize") || 12}, )`