diff --git a/src/rstk_ext.rs b/src/rstk_ext.rs index 60f8a77..3e67ad0 100644 --- a/src/rstk_ext.rs +++ b/src/rstk_ext.rs @@ -18,7 +18,7 @@ pub struct Style { impl Style { pub fn update(&self) { rstk::tell_wish(&format!( - "ttk::style layout {} [ttk::style layout {}];", + "ttk::style layout {{{}}} [ttk::style layout {{{}}}];", self.name, self.name )); rstk::tell_wish(&format!( @@ -39,7 +39,7 @@ pub trait TkWidgetExt { impl TkWidgetExt for T { fn style(&self, style: &Style) { - rstk::tell_wish(&format!("{} configure -style {}", self.id(), style.name)); + rstk::tell_wish(&format!("{} configure -style {{{}}}", self.id(), style.name)); } }