You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This allows seeing the events directly from the room event cache. I'm
hoping this will give us some interesting insights about duplicates,
among other things.
"(room disappeared in the room list service)".to_owned(),
735
+
),
736
+
},
710
737
}
711
738
}else{
712
739
render_paragraph(buf,"Nothing to see here...".to_owned())
@@ -811,10 +838,13 @@ impl App {
811
838
}else{
812
839
matchself.details_mode{
813
840
DetailsMode::ReadReceipts => {
814
-
"\nUse j/k to move, s/S to start/stop the sync service, m to mark as read, t to show the timeline.".to_owned()
841
+
"\nUse j/k to move, s/S to start/stop the sync service, m to mark as read, t to show the timeline, e to show events.".to_owned()
815
842
}
816
843
DetailsMode::TimelineItems => {
817
-
"\nUse j/k to move, s/S to start/stop the sync service, r to show read receipts, Q to enable/disable the send queue, M to send a message.".to_owned()
844
+
"\nUse j/k to move, s/S to start/stop the sync service, r to show read receipts, e to show events, Q to enable/disable the send queue, M to send a message.".to_owned()
845
+
}
846
+
DetailsMode::Events => {
847
+
"\nUse j/k to move, s/S to start/stop the sync service, r to show read receipts, t to show the timeline".to_owned()
0 commit comments