diff options
Diffstat (limited to '')
-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 28a05c1..cbc67fe 100644 --- a/linden/indra/llui/llcombobox.cpp +++ b/linden/indra/llui/llcombobox.cpp | |||
@@ -196,6 +196,11 @@ LLView* LLComboBox::fromXML(LLXMLNodePtr node, LLView *parent, LLUICtrlFactory * | |||
196 | 196 | ||
197 | combo_box->add(label, LLSD(value) ); | 197 | combo_box->add(label, LLSD(value) ); |
198 | } | 198 | } |
199 | |||
200 | else if (child->hasName("separator")) | ||
201 | { | ||
202 | combo_box->addSeparator(); | ||
203 | } | ||
199 | } | 204 | } |
200 | } | 205 | } |
201 | 206 | ||