summaryrefslogtreecommitdiff
path: root/indra/newview/llfloatertwitter.cpp
diff options
context:
space:
mode:
authorCho <cho@lindenlab.com>2013-11-13 18:44:33 +0000
committerCho <cho@lindenlab.com>2013-11-13 18:44:33 +0000
commit47918f4537ee924c4cb9652a72561b5febbddeb6 (patch)
tree72e34af0cfef0384038783fb1dff0dae9a204b8e /indra/newview/llfloatertwitter.cpp
parent19c1be0e055bd06cb3083a9c9d126a4907a90788 (diff)
changed Twitter photo character limit to 100 just to be safe, and switched to use cap server for Flickr and Twitter service
Diffstat (limited to 'indra/newview/llfloatertwitter.cpp')
-rw-r--r--indra/newview/llfloatertwitter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfloatertwitter.cpp b/indra/newview/llfloatertwitter.cpp
index 46cad7ec45..6f8ad109c6 100644
--- a/indra/newview/llfloatertwitter.cpp
+++ b/indra/newview/llfloatertwitter.cpp
@@ -117,7 +117,7 @@ void LLTwitterPhotoPanel::draw()
LLTextEditor* status_text_box = dynamic_cast<LLTextEditor*>(mStatusTextBox);
if (status_text_box)
{
- int max_status_length = add_photo ? 119 : 140;
+ int max_status_length = add_photo ? 100 : 140;
status_text_box->setMaxTextLength(max_status_length);
if (status_text_box->getText().length() > max_status_length)
{