Skip to content

Commit fa3f10c

Browse files
committed
fix: ui issue
1 parent bed660d commit fa3f10c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ui/gui_widgets/general/gui_standard_receive_widgets.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -716,8 +716,8 @@ static void RefreshQrCode(void)
716716
snprintf_s(address, 128, "%.22s\n%s", addressDataItem.address, &addressDataItem.address[22]);
717717
lv_label_set_text(g_standardReceiveWidgets.addressLabel, address);
718718
} else if (g_chainCard == HOME_WALLET_CARD_ZEC) {
719-
char addressString[128];
720-
CutAndFormatString(addressString, sizeof(addressString), addressDataItem.address, 40);
719+
char addressString[256];
720+
CutAndFormatString(addressString, sizeof(addressString), addressDataItem.address, 60);
721721
lv_label_set_text(g_standardReceiveWidgets.addressLabel, addressString);
722722
}
723723
else {

0 commit comments

Comments
 (0)