diff --git a/fpakman/core/controller.py b/fpakman/core/controller.py index fd09417d..065dba1b 100755 --- a/fpakman/core/controller.py +++ b/fpakman/core/controller.py @@ -295,5 +295,5 @@ class GenericApplicationManager(ApplicationManager): suggestions = [] for man in self.managers: if self._is_enabled(man): - suggestions.extend(man.list_suggestions(5)) + suggestions.extend(man.list_suggestions(6)) return suggestions diff --git a/fpakman/core/flatpak/controller.py b/fpakman/core/flatpak/controller.py index eec8dbf2..710d70f8 100644 --- a/fpakman/core/flatpak/controller.py +++ b/fpakman/core/flatpak/controller.py @@ -190,7 +190,7 @@ class FlatpakManager(ApplicationManager): if limit != 0: - for app_id in ('com.spotify.Client', 'com.skype.Client', 'com.dropbox.Client', 'us.zoom.Zoom', 'com.visualstudio.code', 'org.inkscape.Inkscape', 'org.libretro.RetroArch', 'org.kde.kdenlive', 'org.videolan.VLC'): + for app_id in ('com.spotify.Client', 'com.skype.Client', 'com.dropbox.Client', 'us.zoom.Zoom', 'com.visualstudio.code', 'org.telegram.desktop', 'org.inkscape.Inkscape', 'org.libretro.RetroArch', 'org.kde.kdenlive', 'org.videolan.VLC'): app_json = flatpak.search(app_id, app_id=True) diff --git a/fpakman/core/snap/controller.py b/fpakman/core/snap/controller.py index 593adeb1..99a5eb70 100644 --- a/fpakman/core/snap/controller.py +++ b/fpakman/core/snap/controller.py @@ -143,7 +143,7 @@ class SnapManager(ApplicationManager): suggestions = [] if limit != 0: - for name in ('whatsdesk', 'slack', 'yakyak', 'instagraph', 'eclipse', 'gimp', 'supertuxkart'): + for name in ('whatsdesk', 'slack', 'yakyak', 'instagraph', 'pycharm-professional', 'eclipse', 'gimp', 'supertuxkart'): res = snap.search(name, exact_name=True) if res: suggestions.append(self.map_json(res[0], installed=False, disk_loader=None)) diff --git a/fpakman/view/qt/apps_table.py b/fpakman/view/qt/apps_table.py index 2fac3f3b..0d438cce 100644 --- a/fpakman/view/qt/apps_table.py +++ b/fpakman/view/qt/apps_table.py @@ -261,7 +261,7 @@ class AppsTable(QTableWidget): col_bt.clicked.connect(callback) layout = QHBoxLayout() - layout.setContentsMargins(2, 2, 2, 1) + layout.setContentsMargins(2, 3, 2, 0) layout.setAlignment(Qt.AlignCenter) layout.addWidget(col_bt) col.setLayout(layout)