Fixed About Floater's background.

clear and transparent both refer to the same thing, code fix to reflect this.
This commit is contained in:
Lirusaito
2012-04-28 21:34:24 -04:00
parent 8e6063e7b9
commit 16c2235510
2 changed files with 4 additions and 4 deletions

View File

@@ -704,9 +704,9 @@ BOOL LLColor4::parseColor(const std::string& buf, LLColor4* color)
{ {
color->set(LLColor4::orange6); color->set(LLColor4::orange6);
} }
else if ( "clear" == color_name ) else if ( "clear" == color_name || "transparent" == color_name )
{ {
color->set(0.f, 0.f, 0.f, 0.f); color->set(LLColor4::transparent);
} }
else else
{ {

View File

@@ -22,7 +22,7 @@
follows="top|left" follows="top|left"
font="SansSerif" font="SansSerif"
height="343" height="343"
bg_readonly_color="Transparent" bg_readonly_color="transparent"
left="1" left="1"
max_length="65536" max_length="65536"
name="support_editor" name="support_editor"
@@ -49,7 +49,7 @@
<text_editor <text_editor
enabled="false" enabled="false"
follows="left|top" follows="left|top"
bg_readonly_color="Transparent" bg_readonly_color="transparent"
left="1" left="1"
text_color="LtGray" text_color="LtGray"
max_length="65536" max_length="65536"