(svn r14940) -Fix: let the statusbar know the current news are invalid or bad things will happen

This commit is contained in:
smatz
2009-01-09 20:42:17 +00:00
parent 5c666fac14
commit 5fc7fe9648
3 changed files with 10 additions and 8 deletions

View File

@@ -126,6 +126,10 @@ struct StatusBarWindow : Window {
case SBI_SAVELOAD_FINISH: this->saving = false; break;
case SBI_SHOW_TICKER: this->ticker_scroll = 360; break;
case SBI_SHOW_REMINDER: this->reminder_timeout = 91; break;
case SBI_NEWS_DELETED:
this->ticker_scroll = -1280; // reset ticker ...
this->reminder_timeout = 0; // ... and reminder
break;
}
}