diff options
author | Leyla Farazha <leyla@lindenlab.com> | 2011-03-31 15:58:38 -0700 |
---|---|---|
committer | Leyla Farazha <leyla@lindenlab.com> | 2011-03-31 15:58:38 -0700 |
commit | 6896dd2f866e1a03d68d39f1cf32a66e080746ac (patch) | |
tree | f3d2653d0bfe449db3247d39f25759f90133414c | |
parent | 9d28f8401d5b0d5772bb6e45dc2f9d136e9b9bbb (diff) |
fixed low/lowest order issue in wizard comboboxes
-rw-r--r-- | indra/newview/skins/default/xui/en/floater_model_wizard.xml | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/indra/newview/skins/default/xui/en/floater_model_wizard.xml b/indra/newview/skins/default/xui/en/floater_model_wizard.xml index 93740007ee..fa340118d5 100644 --- a/indra/newview/skins/default/xui/en/floater_model_wizard.xml +++ b/indra/newview/skins/default/xui/en/floater_model_wizard.xml @@ -422,12 +422,12 @@ Advanced users familiar with 3d content creation tools may prefer to use the [se <combo_item name="medium"> Medium </combo_item> - <combo_item name="lowest"> - Lowest - </combo_item> <combo_item name="low"> Low </combo_item> + <combo_item name="lowest"> + Lowest + </combo_item> </combo_box> <panel left="10" @@ -449,12 +449,12 @@ Advanced users familiar with 3d content creation tools may prefer to use the [se <slider follows="left|top" height="20" - increment="1" + increment="0.5" layout="topleft" left="204" - max_val="2" - initial_value="1" - min_val="0" + max_val="4" + initial_value="3" + min_val="2" name="accuracy_slider" show_text="false" top="120" @@ -674,12 +674,12 @@ Advanced users familiar with 3d content creation tools may prefer to use the [se <combo_item name="medium"> Medium </combo_item> - <combo_item name="lowest"> - Lowest - </combo_item> <combo_item name="low"> Low </combo_item> + <combo_item name="lowest"> + Lowest + </combo_item> </combo_box> <panel left="10" @@ -807,12 +807,12 @@ Advanced users familiar with 3d content creation tools may prefer to use the [se <combo_item name="medium"> Medium </combo_item> - <combo_item name="lowest"> - Lowest - </combo_item> <combo_item name="low"> Low </combo_item> + <combo_item name="lowest"> + Lowest + </combo_item> </combo_box> <panel left="10" |