What changed, and why it matters
This commit is a minor user-interface tweak in Electrum's contact list. It changes which column expands to fill available window width: previously the contact name column stretched, now the address column stretches. There is no security relevance.
No security action needed. Treat as a normal UI/layout improvement.
Security signals we found
No strong security signals were identified.
Evidence from the diff
In electrum/gui/qt/contact_list.py, the stretch_column parameter passed to MyTreeView.init is changed from self.Columns.NAME to self.Columns.ADDRESS. This only affects Qt layout policy for the contact list table and has no bearing on data handling, validation, cryptography, or network behavior.
Changed components
electrum/gui/qt/contact_list.pyInspect captured patch +1 / −1
diff --git a/electrum/gui/qt/contact_list.py b/electrum/gui/qt/contact_list.py
index 0e31423..e6f7de0 100644
--- a/electrum/gui/qt/contact_list.py
+++ b/electrum/gui/qt/contact_list.py
@@ -61,7 +61,7 @@ class ContactList(MyTreeView):
def __init__(self, main_window: 'ElectrumWindow'):
super().__init__(
main_window=main_window,
- stretch_column=self.Columns.NAME,
+ stretch_column=self.Columns.ADDRESS,
editable_columns=[self.Columns.NAME],
)
self.setModel(QStandardItemModel(self))
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.