(self, color)
| 3589 | return None |
| 3590 | |
| 3591 | def setCurrentItemColor(self, color): |
| 3592 | treeWidget = self.getCurrentTreeWidget() |
| 3593 | if treeWidget: |
| 3594 | brush = QtGui.QBrush() |
| 3595 | brush.setStyle(QtCore.Qt.NoBrush) |
| 3596 | brush.setColor(color) |
| 3597 | currentItem = treeWidget.currentItem() |
| 3598 | currentItem.setForeground(0, brush) |
| 3599 | |
| 3600 | def on_action_YourIdentitiesNew(self): |
| 3601 | self.click_NewAddressDialog() |
no test coverage detected