diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ui.py | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -778,7 +778,6 @@ class AppListPage(QWidget): self.parent = parent self.group = group self.list_layout = QVBoxLayout() - print(len(AppList)) for index in range(len(AppList)): item = AppList[index] if group in item["group"]: @@ -1047,10 +1046,9 @@ class ApplistItem(QWidget, Commands): def installation(self, args): self.install(args) - # Give the signal to reload the app widget + # Reload the app widget also in other tabs self.parent.update_item(self, self.index) for group in self.group.split(" "): - print(f"Group {group} / {self.group}") if group != self.parent.group: self.parent.update_wide_item(self.index) |
