1 Commits

Author SHA1 Message Date
paul
ed333d6ee6 fixed Relief string 2025-01-01 16:43:25 +05:30

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}, )`