Update attributeManager.py
This commit is contained in:
parent
5cc72ace54
commit
75bd9ea0ee
@ -26,9 +26,15 @@ class attributeManager():
|
||||
def resetAttributeDelta(self):
|
||||
self.currAttributeDelta = ''
|
||||
self.prevAttributeDelta = ''
|
||||
def updateAttributeDelta(self, currAttributeDelta):
|
||||
self.prevAttributeDelta = self.currAttributeDelta
|
||||
self.currAttributeDelta = currAttributeDelta
|
||||
def resetAttributeCursor(self):
|
||||
self.currAttributeCursor = None
|
||||
self.prefAttributeCursor = None
|
||||
def updateAttributeCursor(self, currAttributeCursor):
|
||||
self.prefAttributeCursor = self.currAttributeCursor
|
||||
self.currAttributeCursor = currAttributeCursor
|
||||
def resetAttributeData(self, currAttributes):
|
||||
self.prevAttributes = None
|
||||
self.currAttributes = currAttributes
|
||||
|
Loading…
Reference in New Issue
Block a user