From fb96ba41cdee51f3f9334c90ce4e8a752aa1f254 Mon Sep 17 00:00:00 2001 From: f321x Date: Thu, 8 Jan 2026 09:53:41 +0100 Subject: [PATCH] qt: WalletInfoDialog: sort keystores by root fingerprint Sort the keystore tabs of the WalletInfoDialog by their root fingerprints. This makes it less confusing when looking at different wallet instances of the same multisig setup as the tabs will always have the same order. --- electrum/gui/qt/wallet_info_dialog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/gui/qt/wallet_info_dialog.py b/electrum/gui/qt/wallet_info_dialog.py index b194f0777..4c3912dec 100644 --- a/electrum/gui/qt/wallet_info_dialog.py +++ b/electrum/gui/qt/wallet_info_dialog.py @@ -112,7 +112,7 @@ class WalletInfoDialog(WindowModalDialog): labels_clayout = None if wallet.is_deterministic(): - keystores = wallet.get_keystores() + keystores = sorted(wallet.get_keystores(), key=lambda _ks: _ks.get_root_fingerprint() or '') self.keystore_tabs = QTabWidget()