diff --git a/src/seedsigner/gui/screens/psbt_screens.py b/src/seedsigner/gui/screens/psbt_screens.py index 36a2b895..1a6b6506 100644 --- a/src/seedsigner/gui/screens/psbt_screens.py +++ b/src/seedsigner/gui/screens/psbt_screens.py @@ -656,15 +656,12 @@ def __post_init__(self): )) self.components.append(FormattedAddress( - screen_y=self.components[-1].screen_y + self.components[-1].height + GUIConstants.COMPONENT_PADDING, + screen_y=self.components[-1].screen_y + self.components[-1].height, address=self.address, max_lines=1, )) screen_y = self.components[-1].screen_y + self.components[-1].height + 2*GUIConstants.COMPONENT_PADDING - if self.is_multisig and not self.is_change_addr_verified: - # Adjust the vertical spacing - screen_y -= GUIConstants.COMPONENT_PADDING self.components.append(IconTextLine( icon_name=SeedSignerIconConstants.FINGERPRINT, icon_color=GUIConstants.INFO_COLOR,