Skip to content

Commit

Permalink
Merge pull request #269 from ppvnf/patch-20
Browse files Browse the repository at this point in the history
small text improvement
  • Loading branch information
marticliment authored Oct 15, 2022
2 parents 22b5868 + c84c49d commit 11a5396
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wingetui/uiSections.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def __init__(self, parent = None):
self.forceCheckBox.clicked.connect(lambda v: setSettings("DisableInstantSearchOnInstall", bool(not v)))

self.query = CustomLineEdit()
self.query.setPlaceholderText(" "+_("Search for something on Winget or Scoop"))
self.query.setPlaceholderText(" "+_("Search for packages on Winget and Scoop"))
self.query.returnPressed.connect(self.filter)
self.query.textChanged.connect(lambda: self.filter() if self.forceCheckBox.isChecked() else print())
self.query.setFixedHeight(30)
Expand Down Expand Up @@ -537,7 +537,7 @@ def __init__(self, parent = None):
hLayout.setContentsMargins(25, 0, 25, 0)

self.query = CustomLineEdit()
self.query.setPlaceholderText(" "+_("Search for available updates"))
self.query.setPlaceholderText(" "+_("Search on available updates"))
self.query.returnPressed.connect(self.filter)
self.query.textChanged.connect(lambda: self.filter() if self.forceCheckBox.isChecked() else print())
self.query.setFixedHeight(30)
Expand Down

0 comments on commit 11a5396

Please sign in to comment.