Skip to content
Snippets Groups Projects
Commit 3318c8f0 authored by Alexei Arabadji's avatar Alexei Arabadji
Browse files

fixed EXT-3818 “[BSI] plain text chat has too much space between lines”,

To fix EXT-6373 I added vertical padding between posts in plain-text and
unified padding in default mode of IM/chat history.
Now I'm backing out the changes to plain-text mode that led to EXT-3818.
reviewed by Leyla Farazha at
https://codereview.productengine.com/secondlife/r/95/

--HG--
branch : product-engine
parent 54a3f105
No related branches found
No related tags found
No related merge requests found
...@@ -447,7 +447,6 @@ LLChatHistory::LLChatHistory(const LLChatHistory::Params& p) ...@@ -447,7 +447,6 @@ LLChatHistory::LLChatHistory(const LLChatHistory::Params& p)
: LLUICtrl(p), : LLUICtrl(p),
mMessageHeaderFilename(p.message_header), mMessageHeaderFilename(p.message_header),
mMessageSeparatorFilename(p.message_separator), mMessageSeparatorFilename(p.message_separator),
mMessagePlaintextSeparatorFilename(p.message_plaintext_separator),
mLeftTextPad(p.left_text_pad), mLeftTextPad(p.left_text_pad),
mRightTextPad(p.right_text_pad), mRightTextPad(p.right_text_pad),
mLeftWidgetPad(p.left_widget_pad), mLeftWidgetPad(p.left_widget_pad),
...@@ -535,12 +534,6 @@ LLView* LLChatHistory::getSeparator() ...@@ -535,12 +534,6 @@ LLView* LLChatHistory::getSeparator()
return separator; return separator;
} }
LLView* LLChatHistory::getPlaintextSeparator()
{
LLPanel* separator = LLUICtrlFactory::getInstance()->createFromFile<LLPanel>(mMessagePlaintextSeparatorFilename, NULL, LLPanel::child_registry_t::instance());
return separator;
}
LLView* LLChatHistory::getHeader(const LLChat& chat,const LLStyle::Params& style_params) LLView* LLChatHistory::getHeader(const LLChat& chat,const LLStyle::Params& style_params)
{ {
LLChatHistoryHeader* header = LLChatHistoryHeader::createInstance(mMessageHeaderFilename); LLChatHistoryHeader* header = LLChatHistoryHeader::createInstance(mMessageHeaderFilename);
...@@ -639,15 +632,6 @@ void LLChatHistory::appendMessage(const LLChat& chat, const LLSD &args, const LL ...@@ -639,15 +632,6 @@ void LLChatHistory::appendMessage(const LLChat& chat, const LLSD &args, const LL
if (use_plain_text_chat_history) if (use_plain_text_chat_history)
{ {
// append plaintext separator
LLView* separator = getPlaintextSeparator();
LLInlineViewSegment::Params p;
p.force_newline = true;
p.left_pad = mLeftWidgetPad;
p.right_pad = mRightWidgetPad;
p.view = separator;
mEditor->appendWidget(p, "\n", false);
mEditor->appendText("[" + chat.mTimeStr + "] ", mEditor->getText().size() != 0, style_params); mEditor->appendText("[" + chat.mTimeStr + "] ", mEditor->getText().size() != 0, style_params);
if (utf8str_trim(chat.mFromName).size() != 0) if (utf8str_trim(chat.mFromName).size() != 0)
......
...@@ -47,8 +47,6 @@ class LLChatHistory : public LLUICtrl ...@@ -47,8 +47,6 @@ class LLChatHistory : public LLUICtrl
Optional<std::string> message_header; Optional<std::string> message_header;
//Message separator filename //Message separator filename
Optional<std::string> message_separator; Optional<std::string> message_separator;
//Message plaintext separator filename
Optional<std::string> message_plaintext_separator;
//Text left padding from the scroll rect //Text left padding from the scroll rect
Optional<S32> left_text_pad; Optional<S32> left_text_pad;
//Text right padding from the scroll rect //Text right padding from the scroll rect
...@@ -71,7 +69,6 @@ class LLChatHistory : public LLUICtrl ...@@ -71,7 +69,6 @@ class LLChatHistory : public LLUICtrl
Params() Params()
: message_header("message_header"), : message_header("message_header"),
message_separator("message_separator"), message_separator("message_separator"),
message_plaintext_separator("message_plaintext_separator"),
left_text_pad("left_text_pad"), left_text_pad("left_text_pad"),
right_text_pad("right_text_pad"), right_text_pad("right_text_pad"),
left_widget_pad("left_widget_pad"), left_widget_pad("left_widget_pad"),
...@@ -99,11 +96,6 @@ class LLChatHistory : public LLUICtrl ...@@ -99,11 +96,6 @@ class LLChatHistory : public LLUICtrl
* @return pointer to LLView separator object. * @return pointer to LLView separator object.
*/ */
LLView* getSeparator(); LLView* getSeparator();
/**
* Builds a message plaintext separator.
* @return pointer to LLView separator object.
*/
LLView* getPlaintextSeparator();
/** /**
* Builds a message header. * Builds a message header.
* @return pointer to LLView header object. * @return pointer to LLView header object.
...@@ -141,7 +133,6 @@ class LLChatHistory : public LLUICtrl ...@@ -141,7 +133,6 @@ class LLChatHistory : public LLUICtrl
std::string mMessageHeaderFilename; std::string mMessageHeaderFilename;
std::string mMessageSeparatorFilename; std::string mMessageSeparatorFilename;
std::string mMessagePlaintextSeparatorFilename;
S32 mLeftTextPad; S32 mLeftTextPad;
S32 mRightTextPad; S32 mRightTextPad;
......
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
<chat_history <chat_history
message_header="panel_chat_header.xml" message_header="panel_chat_header.xml"
message_separator="panel_chat_separator.xml" message_separator="panel_chat_separator.xml"
message_plaintext_separator="panel_chat_plaintext_separator.xml"
left_text_pad="10" left_text_pad="10"
right_text_pad="15" right_text_pad="15"
left_widget_pad="0" left_widget_pad="0"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment