diff options
author | Paul Guslisty <pguslisty@productengine.com> | 2010-02-18 11:36:19 +0200 |
---|---|---|
committer | Paul Guslisty <pguslisty@productengine.com> | 2010-02-18 11:36:19 +0200 |
commit | bf668d4a184d52fe520748bbf3f8485380a1c775 (patch) | |
tree | fc66293d3e6cc1a516a166d16e89fdc275a75b6c | |
parent | 8c938913668bbbb931d07f5bce790014fba2b44e (diff) |
Fixed critical bug EXT - 4878 (Tab labels are no longer obeying halign attribute)
--HG--
branch : product-engine
-rw-r--r-- | indra/llui/lltabcontainer.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llui/lltabcontainer.cpp b/indra/llui/lltabcontainer.cpp index e810b6fe8f..9a715cca0b 100644 --- a/indra/llui/lltabcontainer.cpp +++ b/indra/llui/lltabcontainer.cpp @@ -214,7 +214,8 @@ LLTabContainer::Params::Params() last_tab("last_tab"), use_custom_icon_ctrl("use_custom_icon_ctrl", false), tab_icon_ctrl_pad("tab_icon_ctrl_pad", 0), - use_ellipses("use_ellipses") + use_ellipses("use_ellipses"), + font_halign("font_halign") { name(std::string("tab_container")); mouse_opaque = false; |