summaryrefslogtreecommitdiff
path: root/indra/llui/lllineeditor.h
diff options
context:
space:
mode:
authormaxim_productengine <mnikolenko@productengine.com>2019-03-29 17:39:19 +0200
committermaxim_productengine <mnikolenko@productengine.com>2019-03-29 17:39:19 +0200
commit3a78da70ad14eab11218cc056c2a3703af1b9738 (patch)
tree0d8aa1d5c5a7cb0f190f3d9d96da905bbeeaaa71 /indra/llui/lllineeditor.h
parent2bbb6c7e027ae12d18bef5db2cdc3e7ba41e8630 (diff)
SL-10833 FIXED [EEP] Text in the Sky Altitudes boxes is low contrast and difficult to read.
Diffstat (limited to 'indra/llui/lllineeditor.h')
-rw-r--r--indra/llui/lllineeditor.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/indra/llui/lllineeditor.h b/indra/llui/lllineeditor.h
index 287837a15c..a711ccefab 100644
--- a/indra/llui/lllineeditor.h
+++ b/indra/llui/lllineeditor.h
@@ -91,10 +91,12 @@ public:
commit_on_focus_lost,
ignore_tab,
bg_image_always_focused,
- is_password;
+ is_password,
+ use_bg_color;
// colors
Optional<LLUIColor> cursor_color,
+ bg_color,
text_color,
text_readonly_color,
text_tentative_color,
@@ -365,6 +367,7 @@ protected:
LLTimer mTripleClickTimer;
LLUIColor mCursorColor;
+ LLUIColor mBgColor;
LLUIColor mFgColor;
LLUIColor mReadOnlyFgColor;
LLUIColor mTentativeFgColor;
@@ -385,6 +388,8 @@ protected:
BOOL mShowImageFocused;
+ bool mUseBgColor;
+
LLWString mPreeditWString;
LLWString mPreeditOverwrittenWString;
std::vector<S32> mPreeditPositions;