1
0
forked from me/IronOS

Merge branch 'master' into extend-font-encoding

This commit is contained in:
Ben V. Brown
2021-03-16 21:51:55 +11:00
committed by GitHub
30 changed files with 34 additions and 2 deletions

View File

@@ -60,6 +60,7 @@ extern const char *SettingLockBoostChar;
extern const char *SettingLockFullChar;
extern const char *SettingNAChar;
extern const char *SettingOffChar;
extern const char *SettingFastChar;
extern const char *SettingMediumChar;
extern const char *SettingSlowChar;

View File

@@ -928,7 +928,7 @@ static bool settings_setAnimationSpeed(void) {
}
static void settings_displayAnimationSpeed(void) {
printShortDescription(30, 5);
printShortDescription(30, 7);
switch (systemSettings.animationSpeed) {
case settingOffSpeed_t::SLOW:
OLED::print(SettingSlowChar);
@@ -940,7 +940,7 @@ static void settings_displayAnimationSpeed(void) {
OLED::print(SettingFastChar);
break;
default:
OLED::print(OffString);
OLED::print(SettingOffChar);
break;
}
}