From 9fb8dbab4d3ce1000afe9d91985e952911c3e126 Mon Sep 17 00:00:00 2001 From: June Tate-Gans Date: Sun, 23 May 2021 11:30:18 -0500 Subject: [PATCH] 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. --- g13gui/applet/switcher.py | 1 + 1 file changed, 1 insertion(+) diff --git a/g13gui/applet/switcher.py b/g13gui/applet/switcher.py index 4269109..e43d612 100644 --- a/g13gui/applet/switcher.py +++ b/g13gui/applet/switcher.py @@ -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()