Skip to content

Commit

Permalink
Merge #719: gui: add chain in the title
Browse files Browse the repository at this point in the history
7f4aca1 gui: add chain in the title (Bruno Garcia)

Pull request description:

  It allows to identify the chain (main, test, etc)
  when using the GUI.

ACKs for top commit:
  achow101:
    ACK 7f4aca1

Tree-SHA512: 69d218c20d84444dc3b81a9b9dad4c058644b1f493028a2baca7b167efa5951563c6addef024e9c39f196ccd53ca22c2e187aa97d836d27c87c49384f6a8600f
  • Loading branch information
achow101 committed Jan 17, 2024
2 parents bc6b053 + 7f4aca1 commit 975211d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hwilib/_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ def __init__(self, passphrase=None, chain=Chain.MAIN):
super(HWIQt, self).__init__()
self.ui = Ui_MainWindow()
self.ui.setupUi(self)
self.setWindowTitle('HWI Qt')
self.setWindowTitle(f'HWI Qt - {chain}')

self.devices = []
self.client = None
Expand Down

0 comments on commit 975211d

Please sign in to comment.