made it more user frendly using a placeholdertext

This commit is contained in:
nosch
2026-02-26 14:21:26 +01:00
parent 2066c86001
commit e354ef50cf
2 changed files with 1 additions and 3 deletions
-2
View File
@@ -24,8 +24,6 @@ def scrape_steamrip_links(text = None):
name = gamehtml.find("a", href=lambda x: x and x.startswith("/"))
names += re.findall('(?<=\/">)[^<]*', name.__str__())
print(names)
# construct the list[dict[str,str]]
+1 -1
View File
@@ -25,7 +25,7 @@ class FuzzySearchWindow(QtWidgets.QWidget): # should work everywhere
self.ignorekeys = ignorekeys
self.searchbox = QtWidgets.QLineEdit()
self.searchbox.placeholderText = "Search for a game"
self.searchbox.setPlaceholderText("Search for a game on Steamrip")
self.table = QtWidgets.QTableWidget()