Skip to content

Commit

Permalink
Bump MAX_PLUGIN_SEARCH_ITEMS to 35 and remove unused attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
dalthviz committed Oct 31, 2024
1 parent a0511d4 commit 32a43ff
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions napari_plugin_manager/qt_plugin_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -865,7 +865,7 @@ def hideAll(self):


class QtPluginDialog(QDialog):
MAX_PLUGIN_SEARCH_ITEMS = 20
MAX_PLUGIN_SEARCH_ITEMS = 35

finished = Signal()

Expand All @@ -882,7 +882,6 @@ def __init__(self, parent=None, prefix=None) -> None:
self._plugins_found = 0
self.already_installed = set()
self.available_set = set()
self._max_search_items = 20
self._prefix = prefix
self._first_open = True
self._plugin_queue = [] # Store plugin data to be added
Expand Down

0 comments on commit 32a43ff

Please sign in to comment.