Merge pull request #6055 from JeremyRand/utxolist-stretch-refactor

UTXOList: Split stretch_column out of __init__
This commit is contained in:
ghost43 2020-03-29 06:13:26 +00:00 committed by GitHub
commit d0a80226ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -56,10 +56,11 @@ class UTXOList(MyTreeView):
Columns.OUTPOINT: _('Output point'),
}
filter_columns = [Columns.ADDRESS, Columns.LABEL, Columns.OUTPOINT]
stretch_column = Columns.LABEL
def __init__(self, parent):
super().__init__(parent, self.create_menu,
stretch_column=self.Columns.LABEL,
stretch_column=self.stretch_column,
editable_columns=[])
self._spend_set = None
self._utxo_dict = {}