Skip to content
Snippets Groups Projects
Commit 0264093f authored by inso's avatar inso
Browse files

Possible fix to #99

parent 8f0dfe1b
No related branches found
No related tags found
No related merge requests found
......@@ -51,6 +51,7 @@ class CommunityTabWidget(QWidget, Ui_CommunityTabWidget):
self.table_identities.setSelectionBehavior(QAbstractItemView.SelectRows)
self.table_identities.customContextMenuRequested.connect(self.identity_context_menu)
self.table_identities.sortByColumn(0, Qt.AscendingOrder)
self.table_identities.resizeColumnsToContents()
app.monitor.persons_watcher(self.community).person_changed.connect(self.refresh_person)
self.wot_tab = WotTabWidget(app, account, community, password_asker, self)
......
......@@ -64,6 +64,7 @@ class TransactionsTabWidget(QWidget, Ui_transactionsTabWidget):
self.table_history.setSelectionBehavior(QAbstractItemView.SelectRows)
self.table_history.setSortingEnabled(True)
self.table_history.horizontalHeader().setSectionResizeMode(QHeaderView.Interactive)
self.table_history.resizeColumnsToContents()
self.refresh_balance()
......
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