1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-16 12:55:19 +03:00

Merge pull request #4569 from mikeller/move_osd_default_position

Move default position for OSD elements away from underneath artificial horizon / crosshairs position.
This commit is contained in:
Michael Keller 2017-11-14 21:13:43 +13:00 committed by GitHub
commit 07b47337db
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -843,7 +843,7 @@ void pgResetFn_osdConfig(osdConfig_t *osdConfig)
{
/* Position elements near centre of screen and disabled by default */
for (int i = 0; i < OSD_ITEM_COUNT; i++) {
osdConfig->item_pos[i] = OSD_POS(10, 6);
osdConfig->item_pos[i] = OSD_POS(10, 7);
}
/* Always enable warnings elements by default */