diff --git a/src/cutecoin/gui/community_tab.py b/src/cutecoin/gui/community_tab.py
index 976e740210f23b1e0f92685e39ee8803eb131c3e..19d19764e00b6c7d64a7f44c8728be245582b20f 100644
--- a/src/cutecoin/gui/community_tab.py
+++ b/src/cutecoin/gui/community_tab.py
@@ -90,6 +90,7 @@ class CommunityTabWidget(QWidget, Ui_CommunityTabWidget):
     def certify_member(self):
         dialog = CertificationDialog(self.account, self.password_asker)
         person = self.sender().data()
+        dialog.combo_community.setCurrentText(self.community.name())
         dialog.edit_pubkey.setText(person.pubkey)
         dialog.radio_pubkey.setChecked(True)
         dialog.exec_()
diff --git a/src/cutecoin/gui/wot_tab.py b/src/cutecoin/gui/wot_tab.py
index 91f2fe30128fa68619ad0ddc2237ba956dddf2f1..0d8e4bafbe013ab9b94caa871d3505150da39364 100644
--- a/src/cutecoin/gui/wot_tab.py
+++ b/src/cutecoin/gui/wot_tab.py
@@ -217,6 +217,7 @@ class WotTabWidget(QWidget, Ui_WotTabWidget):
         dialog = CertificationDialog(self.account, self.password_asker)
         dialog.edit_pubkey.setText(metadata['id'])
         dialog.radio_pubkey.setChecked(True)
+        dialog.combo_community.setCurrentText(self.community.name())
         dialog.exec_()
 
     def send_money_to_node(self, metadata):