# HG changeset patch # User Mychaela Falconia # Date 1603433305 0 # Node ID 1876b5f8d9221568c15dd98ffec16451a946ab51 # Parent 032a561fab2b98099ce056952270ff3eee7f2415 remove textual charging indication from main screen in smallbw diff -r 032a561fab2b -r 1876b5f8d922 src/ui/bmi/mmiIdle.c --- a/src/ui/bmi/mmiIdle.c Fri Oct 23 04:52:28 2020 +0000 +++ b/src/ui/bmi/mmiIdle.c Fri Oct 23 06:08:25 2020 +0000 @@ -1955,6 +1955,15 @@ switch (idle_data.nm_status) { case NETWORK_FULL_SERVICE : + /* + * Verbal indication of "Charging..." / "Charging Complete" + * removed in FreeCalypso: it is redundant with respect + * to the battery icon (which will be animated or full + * in these two respective states), it adds clutter + * to the main screen, and it does not display properly + * in the smallbw version. + */ + #ifdef LSCREEN if (globalBatteryMode == BATT_STATE_CHARGING_COMPLETE) { idle_displayData(IDLE_CHARGING_MODE,TxtChargComplete,NULL); @@ -1963,7 +1972,9 @@ { idle_displayData(IDLE_CHARGING_MODE,TxtCharging,NULL); } - else if (DivertStatus == MFW_CFLAG_SET) + else + #endif + if (DivertStatus == MFW_CFLAG_SET) { idle_displayData(IDLE_CHARGING_MODE,TxtCallDivert,NULL); }