diff options
author | McCabe Maxsted | 2009-01-13 15:05:23 -0700 |
---|---|---|
committer | McCabe Maxsted | 2009-01-13 15:05:23 -0700 |
commit | ce53ebbb532061b1cba3bb6f9b6a3978e1c122a4 (patch) | |
tree | 2ff2d7ae224e1cb06699ad434cb77475ba6fc80f /linden/indra/llui | |
parent | Backported message timeout changes (diff) | |
parent | Merge branch '1.1.0a-gstreamer' into next (diff) | |
download | meta-impy-ce53ebbb532061b1cba3bb6f9b6a3978e1c122a4.zip meta-impy-ce53ebbb532061b1cba3bb6f9b6a3978e1c122a4.tar.gz meta-impy-ce53ebbb532061b1cba3bb6f9b6a3978e1c122a4.tar.bz2 meta-impy-ce53ebbb532061b1cba3bb6f9b6a3978e1c122a4.tar.xz |
merged in jacek's quickfilter and gstreamer branches
Diffstat (limited to 'linden/indra/llui')
-rw-r--r-- | linden/indra/llui/llcombobox.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/linden/indra/llui/llcombobox.cpp b/linden/indra/llui/llcombobox.cpp index 9a2e13b..cb9dd4e 100644 --- a/linden/indra/llui/llcombobox.cpp +++ b/linden/indra/llui/llcombobox.cpp | |||
@@ -194,6 +194,11 @@ LLView* LLComboBox::fromXML(LLXMLNodePtr node, LLView *parent, LLUICtrlFactory * | |||
194 | 194 | ||
195 | combo_box->add(label, LLSD(value) ); | 195 | combo_box->add(label, LLSD(value) ); |
196 | } | 196 | } |
197 | |||
198 | else if (child->hasName("separator")) | ||
199 | { | ||
200 | combo_box->addSeparator(); | ||
201 | } | ||
197 | } | 202 | } |
198 | } | 203 | } |
199 | 204 | ||