Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/olikraus/u8g2
Browse files Browse the repository at this point in the history
  • Loading branch information
olikraus committed Aug 13, 2023
2 parents eb11f30 + a543c48 commit 723c5b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion csrc/mui_u8g2.c
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ u8g2_uint_t mui_get_x(mui_t *ui) MUI_NOINLINE;
u8g2_uint_t mui_get_x(mui_t *ui)
{
if ( u8g2_GetDisplayWidth(mui_get_U8g2(ui)) >= 255 )
return ui->x / 2;
return ui->x * 2;
return ui->x;
}

Expand Down

0 comments on commit 723c5b6

Please sign in to comment.