summaryrefslogtreecommitdiff
path: root/indra/llui/llflyoutbutton.cpp
diff options
context:
space:
mode:
authorrichard <none@none>2009-11-02 19:28:24 -0800
committerrichard <none@none>2009-11-02 19:28:24 -0800
commit995c18b1c7eb8fd23c0a35d5f504c03b7f2b144f (patch)
tree7449d6d56f4911d1587249429c05edafd50dc8ce /indra/llui/llflyoutbutton.cpp
parenta6b6ca9a24cbc1bfe0b3e45602e1eda1e1e9c8f9 (diff)
removed picture_style from LLButton::Params and allow empty labels
Diffstat (limited to 'indra/llui/llflyoutbutton.cpp')
-rw-r--r--indra/llui/llflyoutbutton.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/llui/llflyoutbutton.cpp b/indra/llui/llflyoutbutton.cpp
index 3483bac782..abb0b869eb 100644
--- a/indra/llui/llflyoutbutton.cpp
+++ b/indra/llui/llflyoutbutton.cpp
@@ -48,6 +48,7 @@ LLFlyoutButton::LLFlyoutButton(const Params& p)
// Text label button
LLButton::Params bp(p.action_button);
bp.name(p.label);
+ bp.label(p.label);
bp.rect.left(0).bottom(0).width(getRect().getWidth() - FLYOUT_BUTTON_ARROW_WIDTH).height(getRect().getHeight());
bp.click_callback.function(boost::bind(&LLFlyoutButton::onActionButtonClick, this, _2));
bp.follows.flags(FOLLOWS_ALL);