From ed333d6ee679151df8a358a460b9f1d84fd2a40c Mon Sep 17 00:00:00 2001 From: paul Date: Wed, 1 Jan 2025 16:43:25 +0530 Subject: [PATCH] fixed Relief string --- src/frameworks/tkinter/widgets/base.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frameworks/tkinter/widgets/base.js b/src/frameworks/tkinter/widgets/base.js index bbb908e..1d3f60e 100644 --- a/src/frameworks/tkinter/widgets/base.js +++ b/src/frameworks/tkinter/widgets/base.js @@ -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}, )`