From 46e0333f52c7a2c89559091dd96458c4efe955c0 Mon Sep 17 00:00:00 2001 From: Joseph Lee Date: Tue, 8 Jan 2019 19:35:55 -0800 Subject: [PATCH] Action Center toggle button object: address review comment - assign cache no matter what the new value is. Re #8845. --- source/appModules/shellexperiencehost.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/appModules/shellexperiencehost.py b/source/appModules/shellexperiencehost.py index 287a651a715..f4c484e6f39 100644 --- a/source/appModules/shellexperiencehost.py +++ b/source/appModules/shellexperiencehost.py @@ -29,7 +29,7 @@ def event_valueChange(self): currentItemStatus = self.value if currentItemStatus and currentItemStatus != self._itemStatusMessageCache: ui.message(currentItemStatus) - self._itemStatusMessageCache = currentItemStatus + self._itemStatusMessageCache = currentItemStatus class AppModule(appModuleHandler.AppModule):