mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-24 00:35:26 +03:00
Add tenths of a second OSD timer precision option
This commit is contained in:
parent
c02fe94c53
commit
fa478c9c9d
1 changed files with 5 additions and 1 deletions
|
@ -298,6 +298,9 @@ OSD.generateTimerPreview = function (osd_data, timer_index) {
|
|||
case 1:
|
||||
preview += '00:00.00';
|
||||
break;
|
||||
case 2:
|
||||
preview += '00:00.0';
|
||||
break;
|
||||
}
|
||||
return preview;
|
||||
};
|
||||
|
@ -394,7 +397,8 @@ OSD.constants = {
|
|||
],
|
||||
TIMER_PRECISION: [
|
||||
'SECOND',
|
||||
'HUNDREDTH'
|
||||
'HUNDREDTH',
|
||||
'TENTH'
|
||||
],
|
||||
AHISIDEBARWIDTHPOSITION: 7,
|
||||
AHISIDEBARHEIGHTPOSITION: 3,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue