From 1d2d13d26eca358ec9210864c0d0222c7a0caa62 Mon Sep 17 00:00:00 2001 From: Morgan McMillian Date: Mon, 21 Dec 2020 18:50:55 -0800 Subject: [PATCH] add additional mentions to reply all --- src/widgets.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/widgets.py b/src/widgets.py index 6be58c5..9a987af 100644 --- a/src/widgets.py +++ b/src/widgets.py @@ -285,6 +285,8 @@ class Timeline(Gtk.Box): def on_reply_all(self, action, param): replyuser = "@" + self.post_data.user.username + " " + for mention in self.post_data.content.entities.mentions: + replyuser += "@" + mention.text + " " self.emit('reply', self.post_data.id, replyuser) def on_bookmark(self, action, param):