MCPcopy Index your code
hub / github.com/Bitmessage/PyBitmessage / inboxSearchLineEditUpdated

Method inboxSearchLineEditUpdated

src/bitmessageqt/__init__.py:3922–3931  ·  view source on GitHub ↗
(self, text)

Source from the content-addressed store, hash-verified

3920 self.popMenuSent.exec_(self.ui.tableWidgetInbox.mapToGlobal(point))
3921
3922 def inboxSearchLineEditUpdated(self, text):
3923 # dynamic search for too short text is slow
3924 if len(str(text)) < 3:
3925 return
3926 messagelist = self.getCurrentMessagelist()
3927 searchOption = self.getCurrentSearchOption()
3928 if messagelist:
3929 account = self.getCurrentAccount()
3930 folder = self.getCurrentFolder()
3931 self.loadMessagelist(messagelist, account, folder, searchOption, str(text))
3932
3933 def inboxSearchLineEditReturnPressed(self):
3934 logger.debug("Search return pressed")

Callers

nothing calls this directly

Calls 5

getCurrentMessagelistMethod · 0.95
getCurrentAccountMethod · 0.95
getCurrentFolderMethod · 0.95
loadMessagelistMethod · 0.95

Tested by

no test coverage detected