Skip to content
Snippets Groups Projects
Commit 1fd9e9d7 authored by Vincent Texier's avatar Vincent Texier
Browse files

Fix bug : non member wallet node displayed in black when selected

parent 948109af
No related branches found
No related tags found
No related merge requests found
......@@ -204,7 +204,8 @@ class WotTabWidget(QWidget, Ui_WotTabWidget):
node_status = 0
if identity == identity_account:
node_status += NODE_STATUS_HIGHLIGHTED
if identity.is_member(self.community) is False:
is_member = yield from identity.is_member(self.community)
if is_member is False:
node_status += NODE_STATUS_OUT
node_status += NODE_STATUS_SELECTED
graph.add_identity(identity, node_status)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment