aboutsummaryrefslogtreecommitdiff
path: root/ui/view-main.go
diff options
context:
space:
mode:
Diffstat (limited to 'ui/view-main.go')
-rw-r--r--ui/view-main.go10
1 files changed, 6 insertions, 4 deletions
diff --git a/ui/view-main.go b/ui/view-main.go
index fe2db76..40a6dcd 100644
--- a/ui/view-main.go
+++ b/ui/view-main.go
@@ -102,10 +102,12 @@ func (view *MainView) MarkRead(roomView *RoomView) {
}
func (view *MainView) InputChanged(roomView *RoomView, text string) {
- if len(text) == 0 {
- go view.matrix.SendTyping(roomView.Room.ID, false)
- } else if text[0] != '/' {
- go view.matrix.SendTyping(roomView.Room.ID, true)
+ if !roomView.config.Preferences.DisableTypingNotifs {
+ if len(text) == 0 {
+ go view.matrix.SendTyping(roomView.Room.ID, false)
+ } else if text[0] != '/' {
+ go view.matrix.SendTyping(roomView.Room.ID, true)
+ }
}
}