Skip to content

Commit

Permalink
reduce qr bottom margins
Browse files Browse the repository at this point in the history
  • Loading branch information
bitgamma committed Mar 3, 2025
1 parent 46fafdf commit aeafb0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/qrcode/qrout.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ static app_err_t qrout_display_single_ur(ur_out_t* ur) {
return ERR_DATA;
}

if (qrout_display(urstr, (SCREEN_HEIGHT - TH_NAV_HINT_HEIGHT)) != ERR_OK) {
if (qrout_display(urstr, (SCREEN_HEIGHT - TH_SCREEN_MARGIN)) != ERR_OK) {
return ERR_DATA;
}

Expand All @@ -73,7 +73,7 @@ static app_err_t qrout_display_animated_ur(ur_out_t* ur) {
return ERR_DATA;
}

if (qrout_display(urstr, (SCREEN_HEIGHT - TH_NAV_HINT_HEIGHT)) != ERR_OK) {
if (qrout_display(urstr, (SCREEN_HEIGHT - TH_SCREEN_MARGIN)) != ERR_OK) {
return ERR_DATA;
}

Expand Down

0 comments on commit aeafb0e

Please sign in to comment.