room-history: Only wait 5 seconds to mark a message as read
This commit is contained in:
parent
1d9c82a703
commit
a7d9c3e1d7
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ use crate::{
|
|||
/// The time to wait before considering that scrolling has ended.
|
||||
const SCROLL_TIMEOUT: Duration = Duration::from_millis(500);
|
||||
/// The time to wait before considering that messages on a screen where read.
|
||||
const READ_TIMEOUT: Duration = Duration::from_secs(10);
|
||||
const READ_TIMEOUT: Duration = Duration::from_secs(5);
|
||||
|
||||
#[derive(Debug, Default, Hash, Eq, PartialEq, Clone, Copy, glib::Enum)]
|
||||
#[repr(i32)]
|
||||
|
|
Loading…
Reference in a new issue