Fixed issue were not all wb's were shown
This commit is contained in:
parent
92526c9b65
commit
07ff7a88bb
|
@ -118,6 +118,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)
|
||||
|
@ -259,7 +261,6 @@ class SearchBox(QLineEdit):
|
|||
|
||||
@staticmethod
|
||||
def acceptKey(self, mode):
|
||||
print(f"Got here, {mode}")
|
||||
currentIndex = self.listView.currentIndex()
|
||||
self.showList()
|
||||
if currentIndex.isValid():
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user