Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Nov 14, 2024
1 parent 5113857 commit 0eb2eee
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions napari_plugin_manager/qt_plugin_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -1148,9 +1148,15 @@ def _setup_ui(self):
lay.setContentsMargins(0, 2, 0, 2)
self.installed_label = QLabel(trans._("Installed Plugins"))
self.packages_search = QLineEdit()
self.packages_search.setPlaceholderText(trans._("Type here to start searching for plugins..."))
self.packages_search.setToolTip(trans._("The search text will filter currently installed plugins "
"while also being used to search for plugins on the napari hub"))
self.packages_search.setPlaceholderText(
trans._("Type here to start searching for plugins...")
)
self.packages_search.setToolTip(
trans._(
"The search text will filter currently installed plugins "
"while also being used to search for plugins on the napari hub"
)
)
self.packages_search.setMaximumWidth(350)
self.packages_search.setClearButtonEnabled(True)
self.packages_search.textChanged.connect(self.search)
Expand Down

0 comments on commit 0eb2eee

Please sign in to comment.