switcher: Remove switcher from the list of applets

There's really no point to switching to the switcher when the BD key always
brings it up. It was also causing problems since we introduced switching back to
the previous applet by pressing BD while the switcher is up.
This commit is contained in:
June Tate-Gans 2021-05-23 11:30:18 -05:00
parent c336d9c4cf
commit 9fb8dbab4d

View File

@ -37,6 +37,7 @@ class Switcher(Observer):
def onAppletChange(self, subject, changeType, key, data):
self._applets = sorted(self._appletManager.appletNames)
self._applets.remove('Switcher')
self._lv.model = self._applets
self._lv.update()