mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-05 05:15:12 +00:00
reduce column width to avoid horizontal scrollbar
This commit is contained in:
parent
b17ffc395e
commit
7c13dc54db
1 changed files with 1 additions and 1 deletions
|
@ -1430,7 +1430,7 @@ class ElectrumWindow(QMainWindow):
|
|||
servers_list_widget = QTreeWidget(parent)
|
||||
servers_list_widget.setHeaderLabels( [ label, _('Type') ] )
|
||||
servers_list_widget.setMaximumHeight(150)
|
||||
servers_list_widget.setColumnWidth(0, 250)
|
||||
servers_list_widget.setColumnWidth(0, 240)
|
||||
for _host in servers_list.keys():
|
||||
_type = 'pruning' if servers_list[_host].get('pruning') else 'full'
|
||||
servers_list_widget.addTopLevelItem(QTreeWidgetItem( [ _host, _type ] ))
|
||||
|
|
Loading…
Add table
Reference in a new issue