##// END OF EJS Templates
LeoNode.last_edited
Ville M. Vainio -
Show More
@@ -176,6 +176,7 b' class LeoNode(object, UserDict.DictMixin):'
176 def __get_h(self): return self.p.headString()
176 def __get_h(self): return self.p.headString()
177 def __set_h(self,val):
177 def __set_h(self,val):
178 c.setHeadString(self.p,val)
178 c.setHeadString(self.p,val)
179 LeoNode.last_edited = self
179 c.redraw()
180 c.redraw()
180
181
181 h = property( __get_h, __set_h, doc = "Node headline string")
182 h = property( __get_h, __set_h, doc = "Node headline string")
@@ -183,6 +184,7 b' class LeoNode(object, UserDict.DictMixin):'
183 def __get_b(self): return self.p.bodyString()
184 def __get_b(self): return self.p.bodyString()
184 def __set_b(self,val):
185 def __set_b(self,val):
185 c.setBodyString(self.p, val)
186 c.setBodyString(self.p, val)
187 LeoNode.last_edited = self
186 c.redraw()
188 c.redraw()
187
189
188 b = property(__get_b, __set_b, doc = "Nody body string")
190 b = property(__get_b, __set_b, doc = "Nody body string")
General Comments 0
You need to be logged in to leave comments. Login now