mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2025-04-05 11:22:30 -04:00
change character max value for new toot dialog
This commit is contained in:
parent
e07efa46b3
commit
edbc74262a
@ -5,7 +5,7 @@ from controller.twitter import messages
|
|||||||
|
|
||||||
class toot(messages.tweet):
|
class toot(messages.tweet):
|
||||||
def __init__(self, max=500, *args, **kwargs):
|
def __init__(self, max=500, *args, **kwargs):
|
||||||
super(toot, self).__init__(*args, **kwargs)
|
super(toot, self).__init__(max=max, *args, **kwargs)
|
||||||
if hasattr(self.message, "add_tweet"):
|
if hasattr(self.message, "add_tweet"):
|
||||||
self.message.add_tweet.SetLabel(_("Add toot"))
|
self.message.add_tweet.SetLabel(_("Add toot"))
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user