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

Method appIndicatorInbox

src/bitmessageqt/__init__.py:880–894  ·  view source on GitHub ↗
(self, item=None)

Source from the content-addressed store, hash-verified

878
879 # Show the program window and select inbox tab
880 def appIndicatorInbox(self, item=None):
881 self.appIndicatorShow()
882 # select inbox
883 self.ui.tabWidget.setCurrentIndex(
884 self.ui.tabWidget.indexOf(self.ui.inbox)
885 )
886 self.ui.treeWidgetYourIdentities.setCurrentItem(
887 self.ui.treeWidgetYourIdentities.topLevelItem(0).child(0)
888 )
889
890 if item:
891 self.ui.tableWidgetInbox.setCurrentItem(item)
892 self.tableWidgetInboxItemClicked()
893 else:
894 self.ui.tableWidgetInbox.setCurrentCell(0, 0)
895
896 # Show the program window and select send tab
897 def appIndicatorSend(self):

Callers 1

activateMethod · 0.80

Calls 2

appIndicatorShowMethod · 0.95

Tested by

no test coverage detected