From a624f94a94ad249b66b13ba6a6acb75a58ed1fea Mon Sep 17 00:00:00 2001
From: Inso <insomniak.fr@gmail.com>
Date: Thu, 8 Oct 2015 20:14:57 +0200
Subject: [PATCH] Fix bug #233

---
 src/cutecoin/gui/mainwindow.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/cutecoin/gui/mainwindow.py b/src/cutecoin/gui/mainwindow.py
index a0294748..45baeb90 100644
--- a/src/cutecoin/gui/mainwindow.py
+++ b/src/cutecoin/gui/mainwindow.py
@@ -172,7 +172,9 @@ class MainWindow(QMainWindow, Ui_MainWindow):
     def open_transfer_money_dialog(self):
         dialog = TransferMoneyDialog(self.app,
                                      self.app.current_account,
-                                     self.password_asker)
+                                     self.password_asker,
+                                     self.community_view.community,
+                                     None)
         if dialog.exec_() == QDialog.Accepted:
             self.community_view.tab_history.table_history.model().sourceModel().refresh_transfers()
 
-- 
GitLab