Skip to content
Snippets Groups Projects
Commit 17e4b163 authored by inso's avatar inso
Browse files

Merge branch 'dev091' of https://github.com/ucoin-io/cutecoin into dev091

parents 2d870602 db39511c
No related branches found
No related tags found
No related merge requests found
...@@ -127,7 +127,7 @@ class CommunityTabWidget(QWidget, Ui_CommunityTabWidget): ...@@ -127,7 +127,7 @@ class CommunityTabWidget(QWidget, Ui_CommunityTabWidget):
dialog.radio_pubkey.setChecked(True) dialog.radio_pubkey.setChecked(True)
if dialog.exec_() == QDialog.Accepted: if dialog.exec_() == QDialog.Accepted:
currency_tab = self.window().currencies_tabwidget.currentWidget() currency_tab = self.window().currencies_tabwidget.currentWidget()
currency_tab.table_history.model().invalidate() currency_tab.tab_history.table_history.model().invalidate()
def certify_member(self, person): def certify_member(self, person):
dialog = CertificationDialog(self.account, self.password_asker) dialog = CertificationDialog(self.account, self.password_asker)
...@@ -140,7 +140,7 @@ class CommunityTabWidget(QWidget, Ui_CommunityTabWidget): ...@@ -140,7 +140,7 @@ class CommunityTabWidget(QWidget, Ui_CommunityTabWidget):
person = self.sender().data() person = self.sender().data()
index_wot_tab = self.tabs_information.indexOf(self.wot_tab) index_wot_tab = self.tabs_information.indexOf(self.wot_tab)
# redraw WoT with this member selected # redraw WoT with this member selected
self.wot_tab.draw_graph(person.pubkey) self.wot_tab.draw_graph({'text': person.uid, 'id': person.pubkey})
# change page to WoT # change page to WoT
self.tabs_information.setCurrentIndex(index_wot_tab) self.tabs_information.setCurrentIndex(index_wot_tab)
......
...@@ -194,7 +194,7 @@ class MainWindow(QMainWindow, Ui_MainWindow): ...@@ -194,7 +194,7 @@ class MainWindow(QMainWindow, Ui_MainWindow):
dialog.accepted.connect(self.refresh_wallets) dialog.accepted.connect(self.refresh_wallets)
if dialog.exec_() == QDialog.Accepted: if dialog.exec_() == QDialog.Accepted:
currency_tab = self.currencies_tabwidget.currentWidget() currency_tab = self.currencies_tabwidget.currentWidget()
currency_tab.table_history.model().invalidate() currency_tab.tab_history.table_history.model().invalidate()
def open_certification_dialog(self): def open_certification_dialog(self):
dialog = CertificationDialog(self.app.current_account, dialog = CertificationDialog(self.app.current_account,
......
...@@ -189,4 +189,4 @@ class WalletsTabWidget(QWidget, Ui_WalletsTab): ...@@ -189,4 +189,4 @@ class WalletsTabWidget(QWidget, Ui_WalletsTab):
dialog.radio_pubkey.setChecked(True) dialog.radio_pubkey.setChecked(True)
if dialog.exec_() == QDialog.Accepted: if dialog.exec_() == QDialog.Accepted:
currency_tab = self.window().currencies_tabwidget.currentWidget() currency_tab = self.window().currencies_tabwidget.currentWidget()
currency_tab.table_history.model().invalidate() currency_tab.tab_history.table_history.model().invalidate()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment