Skip to content

Commit

Permalink
fix: ui issue
Browse files Browse the repository at this point in the history
  • Loading branch information
soralit committed Dec 18, 2024
1 parent bed660d commit fa3f10c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ui/gui_widgets/general/gui_standard_receive_widgets.c
Original file line number Diff line number Diff line change
Expand Up @@ -716,8 +716,8 @@ static void RefreshQrCode(void)
snprintf_s(address, 128, "%.22s\n%s", addressDataItem.address, &addressDataItem.address[22]);
lv_label_set_text(g_standardReceiveWidgets.addressLabel, address);
} else if (g_chainCard == HOME_WALLET_CARD_ZEC) {
char addressString[128];
CutAndFormatString(addressString, sizeof(addressString), addressDataItem.address, 40);
char addressString[256];
CutAndFormatString(addressString, sizeof(addressString), addressDataItem.address, 60);
lv_label_set_text(g_standardReceiveWidgets.addressLabel, addressString);
}
else {
Expand Down

0 comments on commit fa3f10c

Please sign in to comment.