mirror of
https://github.com/liberatedsystems/openCom-Companion.git
synced 2024-11-22 05:20:36 +01:00
Don't send empty commands
This commit is contained in:
parent
43e1912a0a
commit
8eea3bb5bb
@ -1250,8 +1250,12 @@ class SidebandApp(MDApp):
|
|||||||
self.open_conversations(direction="right")
|
self.open_conversations(direction="right")
|
||||||
|
|
||||||
def message_send_action(self, sender=None):
|
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 == "":
|
||||||
return
|
if not (self.attach_type != None and self.attach_path != None):
|
||||||
|
return
|
||||||
|
|
||||||
|
if self.outbound_mode_command:
|
||||||
|
return
|
||||||
|
|
||||||
def cb(dt):
|
def cb(dt):
|
||||||
self.message_send_dispatch(sender)
|
self.message_send_dispatch(sender)
|
||||||
|
Loading…
Reference in New Issue
Block a user