Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gajim/gtk/message_actions_box.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/gajim/gtk/message_actions_box.py b/gajim/gtk/message_actions_box.py
index 50ec80a8f..dc9031e57 100644
--- a/gajim/gtk/message_actions_box.py
+++ b/gajim/gtk/message_actions_box.py
@@ -140,6 +140,10 @@ class MessageActionsBox(Gtk.Grid):
action_name = action.get_name()
log.info('Activate action: %s', action_name)
+ if not self.msg_textview.is_sensitive():
+ log.info('Action dismissed, input is not enabled')
+ return
+
if action_name == 'input-clear':
self._on_clear()