mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-30 08:51:32 +00:00
use column 1 because column 0 may be hidden
This commit is contained in:
parent
52b8ee976f
commit
6a3e5f1f95
1 changed files with 2 additions and 1 deletions
|
@ -763,7 +763,8 @@ class ElectrumWindow(QMainWindow):
|
|||
item.setBackgroundColor(1, QColor('red'))
|
||||
l.addTopLevelItem(item)
|
||||
|
||||
l.setCurrentItem(l.topLevelItem(0))
|
||||
# we use column 1 because column 0 may be hidden
|
||||
l.setCurrentItem(l.topLevelItem(0),1)
|
||||
|
||||
def show_contact_details(self, m):
|
||||
a = self.wallet.aliases.get(m)
|
||||
|
|
Loading…
Add table
Reference in a new issue