diff options
author | richard <none@none> | 2009-11-04 12:02:41 -0800 |
---|---|---|
committer | richard <none@none> | 2009-11-04 12:02:41 -0800 |
commit | 3d6e058616207b287f28ca3eee3967d06cb616ad (patch) | |
tree | f093f5507df02e412b71a9b0217176d5e2d18a0d /indra/llui/llfloater.cpp | |
parent | e235b25da31285e6a581c8517c3d7db632bc5919 (diff) | |
parent | c3e9536b6fae9fbd751d4a63e243f502e056175d (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); |