parent
5ac17e456d
commit
059f113d95
|
@ -3301,17 +3301,22 @@ class MyForm(QtGui.QMainWindow):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
# Group of functions for the Your Identities dialog box
|
# Group of functions for the Your Identities dialog box
|
||||||
def getCurrentAccount(self):
|
def getCurrentItem(self):
|
||||||
treeWidget = self.getCurrentTreeWidget()
|
treeWidget = self.getCurrentTreeWidget()
|
||||||
#treeWidget = self.ui.treeWidgetYourIdentities
|
|
||||||
if treeWidget:
|
if treeWidget:
|
||||||
currentItem = treeWidget.currentItem()
|
currentItem = treeWidget.currentItem()
|
||||||
if currentItem:
|
if currentItem:
|
||||||
account = currentItem.address
|
return currentItem
|
||||||
return account
|
return False
|
||||||
else:
|
|
||||||
# TODO need debug msg?
|
def getCurrentAccount(self):
|
||||||
return False
|
currentItem = self.getCurrentItem()
|
||||||
|
if currentItem:
|
||||||
|
account = currentItem.address
|
||||||
|
return account
|
||||||
|
else:
|
||||||
|
# TODO need debug msg?
|
||||||
|
return False
|
||||||
|
|
||||||
def getCurrentFolder(self):
|
def getCurrentFolder(self):
|
||||||
treeWidget = self.getCurrentTreeWidget()
|
treeWidget = self.getCurrentTreeWidget()
|
||||||
|
@ -3519,10 +3524,10 @@ class MyForm(QtGui.QMainWindow):
|
||||||
if (not isinstance(item, Ui_AddressWidget)) or item.type != 'normal' or not self.getCurrentTreeWidget() or self.getCurrentTreeWidget().currentItem() is None:
|
if (not isinstance(item, Ui_AddressWidget)) or item.type != 'normal' or not self.getCurrentTreeWidget() or self.getCurrentTreeWidget().currentItem() is None:
|
||||||
return
|
return
|
||||||
# not visible
|
# not visible
|
||||||
if (not self.getCurrentAccount()) or (not isinstance (self.getCurrentAccount(), Ui_AddressWidget)):
|
if (not self.getCurrentItem()) or (not isinstance (self.getCurrentItem(), Ui_AddressWidget)):
|
||||||
return
|
return
|
||||||
# only currently selected item
|
# only currently selected item
|
||||||
if item.address != self.getCurrentTreeWidget().currentItem().address:
|
if item.address != self.getCurrentAccount():
|
||||||
return
|
return
|
||||||
|
|
||||||
newLabel = str(item.text(0))
|
newLabel = str(item.text(0))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user