Merge pull request #14 from APEbbers/Develop

Fixed issue were not all wb's were shown
This commit is contained in:
Paul Ebbers 2025-01-11 13:59:32 +01:00 committed by GitHub
commit 270310f6b6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View File

@ -122,6 +122,8 @@ class SearchBox(QLineEdit):
self.pendingExtraInfo = None
self.currentExtraInfo = None
# Connect signals and slots
self.listView.clicked.connect(lambda x: self.selectResult("select", x))
# self.listView.selectionModel().selectionChanged.connect(self.onSelectionChanged)
# Add custom mouse events. On windows the click events were not working for Searcbar versions 1.2.x and older.
# These events and their proxies in the SearchBorLight fixes this
self.listView.mousePressEvent = lambda event: self.proxyMousePressEvent(event)
@ -291,7 +293,6 @@ class SearchBox(QLineEdit):
@staticmethod
def acceptKey(self, mode):
print(f"Got here, {mode}")
currentIndex = self.listView.currentIndex()
self.showList()
if currentIndex.isValid():

View File

@ -5,7 +5,7 @@
<description>Adds a search bar widget for tools, document objects, and preferences</description>
<version>1.3.1</version>
<version>1.3.1.1</version>
<date>2022-06-01</date>