mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2025-04-05 03:12:29 -04:00
Empty attachments after adding a new tweet
This commit is contained in:
parent
a43101e694
commit
d9f4b86d91
@ -161,6 +161,7 @@ class tweet(basicTweet):
|
|||||||
attachments = self.attachments[::]
|
attachments = self.attachments[::]
|
||||||
tweetdata = dict(text=text, attachments=attachments)
|
tweetdata = dict(text=text, attachments=attachments)
|
||||||
self.thread.append(tweetdata)
|
self.thread.append(tweetdata)
|
||||||
|
self.attachments = []
|
||||||
if update_gui:
|
if update_gui:
|
||||||
self.message.reset_controls()
|
self.message.reset_controls()
|
||||||
self.message.add_item(item=[text, len(attachments)], list_type="tweet")
|
self.message.add_item(item=[text, len(attachments)], list_type="tweet")
|
||||||
@ -185,6 +186,11 @@ class tweet(basicTweet):
|
|||||||
else:
|
else:
|
||||||
self.message.attachments.Enable(False)
|
self.message.attachments.Enable(False)
|
||||||
self.message.remove_attachment.Enable(False)
|
self.message.remove_attachment.Enable(False)
|
||||||
|
if hasattr(self.message, "add_tweet"):
|
||||||
|
if len(self.message.text.GetValue()) > 0 or len(self.attachments) > 0:
|
||||||
|
self.message.add_tweet.Enable(True)
|
||||||
|
else:
|
||||||
|
self.message.add_tweet.Enable(False)
|
||||||
|
|
||||||
def remove_tweet(self, *args, **kwargs):
|
def remove_tweet(self, *args, **kwargs):
|
||||||
tweet = self.message.tweets.GetFocusedItem()
|
tweet = self.message.tweets.GetFocusedItem()
|
||||||
@ -266,9 +272,6 @@ class dm(basicTweet):
|
|||||||
self.message.attachments.Enable(False)
|
self.message.attachments.Enable(False)
|
||||||
self.message.remove_attachment.Enable(False)
|
self.message.remove_attachment.Enable(False)
|
||||||
|
|
||||||
def get_data(self):
|
|
||||||
return dict(text=self.message.text.GetValue(), attachments=self.attachments)
|
|
||||||
|
|
||||||
def can_attach(self):
|
def can_attach(self):
|
||||||
if len(self.attachments) == 0:
|
if len(self.attachments) == 0:
|
||||||
return True
|
return True
|
||||||
|
Loading…
x
Reference in New Issue
Block a user