From 7f4aca10ba56349ff5927cf43ddaade3147b1581 Mon Sep 17 00:00:00 2001 From: Bruno Garcia Date: Fri, 15 Dec 2023 10:00:18 -0300 Subject: [PATCH] gui: add chain in the title It allows to identify the chain (main, test, etc) when using the GUI. --- hwilib/_gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hwilib/_gui.py b/hwilib/_gui.py index cd0a73f9e..fcbd1ae5b 100644 --- a/hwilib/_gui.py +++ b/hwilib/_gui.py @@ -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