Don't try sending empty messages
This commit is contained in:
parent
c5ad94b2d3
commit
6c19fc85b9
|
@ -506,6 +506,9 @@ class SidebandApp(MDApp):
|
|||
self.open_conversations(direction="right")
|
||||
|
||||
def message_send_action(self, sender=None):
|
||||
if self.root.ids.message_text.text == "":
|
||||
return
|
||||
|
||||
def cb(dt):
|
||||
self.message_send_dispatch(sender)
|
||||
Clock.schedule_once(cb, 0.20)
|
||||
|
|
Loading…
Reference in New Issue