Fixed About Floater's background.
clear and transparent both refer to the same thing, code fix to reflect this.
This commit is contained in:
@@ -704,9 +704,9 @@ BOOL LLColor4::parseColor(const std::string& buf, LLColor4* color)
|
||||
{
|
||||
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
|
||||
{
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
follows="top|left"
|
||||
font="SansSerif"
|
||||
height="343"
|
||||
bg_readonly_color="Transparent"
|
||||
bg_readonly_color="transparent"
|
||||
left="1"
|
||||
max_length="65536"
|
||||
name="support_editor"
|
||||
@@ -49,7 +49,7 @@
|
||||
<text_editor
|
||||
enabled="false"
|
||||
follows="left|top"
|
||||
bg_readonly_color="Transparent"
|
||||
bg_readonly_color="transparent"
|
||||
left="1"
|
||||
text_color="LtGray"
|
||||
max_length="65536"
|
||||
|
||||
Reference in New Issue
Block a user