Skip to content

Commit ec68481

Browse files
authored
Merge pull request #583 from kdmukai/psbt_change_details_screen_spacing
[UI tweak] Minor adjustment to `PSBTChangeDetailsScreen`
2 parents e50f234 + c6c385d commit ec68481

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/seedsigner/gui/screens/psbt_screens.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -656,15 +656,12 @@ def __post_init__(self):
656656
))
657657

658658
self.components.append(FormattedAddress(
659-
screen_y=self.components[-1].screen_y + self.components[-1].height + GUIConstants.COMPONENT_PADDING,
659+
screen_y=self.components[-1].screen_y + self.components[-1].height,
660660
address=self.address,
661661
max_lines=1,
662662
))
663663

664664
screen_y = self.components[-1].screen_y + self.components[-1].height + 2*GUIConstants.COMPONENT_PADDING
665-
if self.is_multisig and not self.is_change_addr_verified:
666-
# Adjust the vertical spacing
667-
screen_y -= GUIConstants.COMPONENT_PADDING
668665
self.components.append(IconTextLine(
669666
icon_name=SeedSignerIconConstants.FINGERPRINT,
670667
icon_color=GUIConstants.INFO_COLOR,

0 commit comments

Comments
 (0)