diff --git a/itemcontroller.lua b/itemcontroller.lua index 926c48d..42efb81 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -444,9 +444,13 @@ local PAGES = { return NOOP end - local pageState = state:currentPageState({ - request = 0 - }) + local pageState = state:currentPageState( + { request = 0, group = group }, + function(currentPageState) + -- True = reset state + return currentPageState ~= group + end + ) local itemName = fitText(group:getSimpleName(), state.width) local itemLeftPad, itemRightPad = getCenterPad(#itemName, state.width) @@ -617,8 +621,8 @@ function CONTROLLER_STATE:itemTransaction(transact) unlock() end -function CONTROLLER_STATE:currentPageState(default) - self.pageState[self.currentPage] = self.pageState[self.currentPage] or default +function CONTROLLER_STATE:currentPageState(default, override) + self.pageState[self.currentPage] = ((not override or (type(override) ~= "function" or not override(self.pageState[self.currentPage]))) and self.pageState[self.currentPage]) or default return self.pageState[self.currentPage] end