diff options
author | richard <none@none> | 2009-11-04 10:42:23 -0800 |
---|---|---|
committer | richard <none@none> | 2009-11-04 10:42:23 -0800 |
commit | 5bcd24a01df7cb6cdeb78ab742fb54ce75fb6d13 (patch) | |
tree | 081e318f5e7f56fad5687bdc053f7fb38ed3d3b0 /indra/llui/llfloater.cpp | |
parent | 70207cb0529d528f7eac67b63d72630107d190b1 (diff) | |
parent | 0ee426016aeae605eeb8ab3aa535b2b52462a3d9 (diff) |
merge
Diffstat (limited to 'indra/llui/llfloater.cpp')
-rw-r--r-- | indra/llui/llfloater.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llfloater.cpp b/indra/llui/llfloater.cpp index 8c72b079ee..90ba2dc41f 100644 --- a/indra/llui/llfloater.cpp +++ b/indra/llui/llfloater.cpp @@ -1826,7 +1826,6 @@ void LLFloater::buildButtons() LLButton::Params p; p.name(sButtonNames[i]); p.rect(btn_rect); - p.label(""); p.image_unselected.name(sButtonActiveImageNames[i]); // Selected, no matter if hovered or not, is "pressed" p.image_selected.name(sButtonPressedImageNames[i]); @@ -1839,6 +1838,7 @@ void LLFloater::buildButtons() p.follows.flags(FOLLOWS_TOP|FOLLOWS_RIGHT); p.tool_tip(sButtonToolTips[i]); p.scale_image(true); + p.chrome(true); LLButton* buttonp = LLUICtrlFactory::create<LLButton>(p); addChild(buttonp); |