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

fix resize columns to content in some tables

parent 11f81e10
No related branches found
No related tags found
No related merge requests found
...@@ -324,6 +324,7 @@ Revoking your UID can only success if it is not already validated by the network ...@@ -324,6 +324,7 @@ Revoking your UID can only success if it is not already validated by the network
persons = certifiers_of + certified_by persons = certifiers_of + certified_by
self.table_identities.model().sourceModel().refresh_identities(persons) self.table_identities.model().sourceModel().refresh_identities(persons)
self.table_identities.resizeColumnsToContents()
def refresh_quality_buttons(self): def refresh_quality_buttons(self):
try: try:
......
...@@ -139,6 +139,7 @@ class WalletsTabWidget(QWidget, Ui_WalletsTab): ...@@ -139,6 +139,7 @@ class WalletsTabWidget(QWidget, Ui_WalletsTab):
proxy_model.setSourceModel(wallets_model) proxy_model.setSourceModel(wallets_model)
wallets_model.dataChanged.connect(self.wallet_changed) wallets_model.dataChanged.connect(self.wallet_changed)
self.table_wallets.setModel(proxy_model) self.table_wallets.setModel(proxy_model)
self.table_wallets.resizeColumnsToContents()
def get_referential_value(self, value): def get_referential_value(self, value):
return self.account.units_to_ref(value, self.community) return self.account.units_to_ref(value, self.community)
...@@ -221,6 +222,7 @@ class WalletsTabWidget(QWidget, Ui_WalletsTab): ...@@ -221,6 +222,7 @@ class WalletsTabWidget(QWidget, Ui_WalletsTab):
self.table_wallets.edit(index) self.table_wallets.edit(index)
def wallet_changed(self): def wallet_changed(self):
self.table_wallets.resizeColumnsToContents()
self.app.save(self.app.current_account) self.app.save(self.app.current_account)
def copy_pubkey_to_clipboard(self): def copy_pubkey_to_clipboard(self):
......
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