diff options
author | Richard Linden <none@none> | 2011-09-22 17:34:42 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2011-09-22 17:34:42 -0700 |
commit | c155483fc206768e21d180fac9ccdd85db8f582e (patch) | |
tree | e6341800a5a66e1799c682a6dddbdff090c10417 /indra/newview/skins/default/xui/en/widgets | |
parent | 6c209d0fc8c8b171262074e1970c4e9ff299f9f0 (diff) |
EXP-1239 WIP make toolbars wrap when there is not enough room
toolbar button height configured by button_height attribute
vertical toolbar buttons now share common width
wrap attribute now controls wrapping
Diffstat (limited to 'indra/newview/skins/default/xui/en/widgets')
-rw-r--r-- | indra/newview/skins/default/xui/en/widgets/toolbar.xml | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/indra/newview/skins/default/xui/en/widgets/toolbar.xml b/indra/newview/skins/default/xui/en/widgets/toolbar.xml index a7f73c0c7c..f9cc9b7c69 100644 --- a/indra/newview/skins/default/xui/en/widgets/toolbar.xml +++ b/indra/newview/skins/default/xui/en/widgets/toolbar.xml @@ -1,15 +1,12 @@ <?xml version="1.0" encoding="utf-8" standalone="yes" ?> -<toolbar background_image = "Rounded_Rect"> - <button_icon_and_text - follows="none" - height="30" - chrome="true" - auto_resize="true" - /> - <button_icon - follows="none" - height="30" - chrome="true" - auto_resize="true" - /> +<toolbar background_image = "Rounded_Rect" + button_height="30"> + <button_icon_and_text follows="none" + chrome="true" + use_ellipses="true" + auto_resize="true"/> + <button_icon follows="none" + chrome="true" + use_ellipses="true" + auto_resize="true"/> </toolbar> |