diff options
author | Cho <cho@lindenlab.com> | 2013-11-13 18:44:33 +0000 |
---|---|---|
committer | Cho <cho@lindenlab.com> | 2013-11-13 18:44:33 +0000 |
commit | 47918f4537ee924c4cb9652a72561b5febbddeb6 (patch) | |
tree | 72e34af0cfef0384038783fb1dff0dae9a204b8e /indra/newview/llfloatertwitter.cpp | |
parent | 19c1be0e055bd06cb3083a9c9d126a4907a90788 (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.cpp | 2 |
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) { |