Terminal program for MailStation devices
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

maybe_update_statusbar: Don't show "Call" or "Settings"

These were never implemented, don't pretend they do anything. Leave
"Hangup" when SOURCE_MODEM and a call is in place because it does
work.

+3 -4
+3 -4
main.c
··· 243 243 } 244 244 245 245 if (force || s != statusbar_state) { 246 - update_statusbar(STATUSBAR_LEFT, "%s%s", 247 - statusbar_state & (1 << 0) ? STATUSBAR_HANGUP : STATUSBAR_CALL, 248 - STATUSBAR_SETTINGS); 246 + update_statusbar(STATUSBAR_LEFT, "%s", 247 + statusbar_state & (1 << 0) ? STATUSBAR_HANGUP : 248 + STATUSBAR_BLANK); 249 249 250 250 statusbar_state = s; 251 251 } ··· 263 263 (rtc10minutes * 10) + rtcminutes); 264 264 } 265 265 } 266 - 267 266 268 267 void 269 268 process_keyboard(void)