From 7921e3946a6454ad16633152c1b480d825716a50 Mon Sep 17 00:00:00 2001 From: inso <insomniak.fr@gmaiL.com> Date: Fri, 29 Jul 2016 23:52:23 +0200 Subject: [PATCH] Fix rare case where transfer button would be disabled The refresh quality button does not handle transfer button. So we have to enable it manually. --- src/sakia/gui/community_view.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sakia/gui/community_view.py b/src/sakia/gui/community_view.py index 9c25a16b..ff92acfd 100644 --- a/src/sakia/gui/community_view.py +++ b/src/sakia/gui/community_view.py @@ -288,6 +288,7 @@ The publication of this document will remove your identity from the network.</p> self.button_certification.setEnabled(False) self.button_send_money.setEnabled(False) else: + self.button_send_money.setEnabled(True) self.refresh_quality_buttons() if self.community.network.quality > 0.66: -- GitLab