Don't send empty commands
This commit is contained in:
parent
43e1912a0a
commit
8eea3bb5bb
|
@ -1250,7 +1250,11 @@ class SidebandApp(MDApp):
|
|||
self.open_conversations(direction="right")
|
||||
|
||||
def message_send_action(self, sender=None):
|
||||
if not (self.attach_type != None and self.attach_path != None) and self.messages_view.ids.message_text.text == "":
|
||||
if self.messages_view.ids.message_text.text == "":
|
||||
if not (self.attach_type != None and self.attach_path != None):
|
||||
return
|
||||
|
||||
if self.outbound_mode_command:
|
||||
return
|
||||
|
||||
def cb(dt):
|
||||
|
|
Loading…
Reference in New Issue