Lengthen blue bar timeout to require two heartbeat drops (closes #20 gh issue)

This commit is contained in:
Keith Winstein
2012-02-25 12:20:00 -05:00
parent cdbdcbb224
commit e9ce05bc7b
+1 -1
View File
@@ -131,7 +131,7 @@ namespace Overlay {
uint64_t message_expiration;
public:
bool need_countup( uint64_t ts ) const { return ts - last_word_from_server > 4500; }
bool need_countup( uint64_t ts ) const { return ts - last_word_from_server > 6500; }
void adjust_message( void );
void apply( Framebuffer &fb ) const;
void set_notification_string( const wstring s_message ) { message = s_message; message_expiration = timestamp() + 1000; }