Skip to content

Commit

Permalink
Fix check
Browse files Browse the repository at this point in the history
  • Loading branch information
goanpeca committed Jul 26, 2024
1 parent a3cff8e commit 0477cc8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion napari_plugin_manager/qt_plugin_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -840,6 +840,7 @@ def hideAll(self):
item.setHidden(not item.widget.is_busy())



class QtPluginDialog(QDialog):
MAX_PLUGIN_SEARCH_ITEMS = 20

Expand Down Expand Up @@ -1300,7 +1301,7 @@ def _add_items(self):
if (
len(self._plugin_queue) == 0
or self.available_list.count_visible()
== self.MAX_PLUGIN_SEARCH_ITEMS
>= self.MAX_PLUGIN_SEARCH_ITEMS
):
if (
self.installed_list.count() + self.available_list.count()
Expand Down

0 comments on commit 0477cc8

Please sign in to comment.