diff options
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/app_settings/shaders/class1/deferred/starsF.glsl | 23 | ||||
| -rw-r--r-- | indra/newview/app_settings/shaders/class1/deferred/starsV.glsl | 4 | ||||
| -rw-r--r-- | indra/newview/lldrawpoolwlsky.cpp | 4 | ||||
| -rw-r--r-- | indra/newview/llenvironment.cpp | 7 | ||||
| -rw-r--r-- | indra/newview/llfloatereditextdaycycle.cpp | 9 | ||||
| -rw-r--r-- | indra/newview/llfloaterfixedenvironment.cpp | 9 | ||||
| -rw-r--r-- | indra/newview/llflyoutcombobtn.cpp | 36 | ||||
| -rw-r--r-- | indra/newview/llflyoutcombobtn.h | 8 | ||||
| -rw-r--r-- | indra/newview/llsettingsvo.cpp | 89 | ||||
| -rw-r--r-- | indra/newview/llviewershadermgr.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/llvosky.cpp | 32 | ||||
| -rw-r--r-- | indra/newview/llvosky.h | 2 | ||||
| -rw-r--r-- | indra/newview/llvowlsky.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/floater_edit_ext_day_cycle.xml | 11 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/menu_save_settings.xml | 54 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/panel_settings_sky_sunmoon.xml | 2 | 
16 files changed, 197 insertions, 97 deletions
| diff --git a/indra/newview/app_settings/shaders/class1/deferred/starsF.glsl b/indra/newview/app_settings/shaders/class1/deferred/starsF.glsl index d7f655709c..4ae3f7b76f 100644 --- a/indra/newview/app_settings/shaders/class1/deferred/starsF.glsl +++ b/indra/newview/app_settings/shaders/class1/deferred/starsF.glsl @@ -26,19 +26,26 @@  /*[EXTRA_CODE_HERE]*/  #ifdef DEFINE_GL_FRAGCOLOR -out vec4 frag_color; +out vec4 frag_data[3];  #else -#define frag_color gl_FragColor +#define frag_data gl_FragData  #endif  VARYING vec4 vertex_color;  VARYING vec2 vary_texcoord0; +VARYING vec2 screenpos;  uniform sampler2D diffuseMap;  uniform sampler2D altDiffuseMap;  uniform float blend_factor;  uniform float custom_alpha;  uniform vec4 sunlight_color; +uniform float time; + +float twinkle(){ +    float d = fract(screenpos.x + screenpos.y); +    return abs(d); +}  void main()   { @@ -46,6 +53,14 @@ void main()  	vec4 col_b = texture2D(diffuseMap, vary_texcoord0.xy);      vec4 col = mix(col_b, col_a, blend_factor);      col.rgb *= vertex_color.rgb; -    col.a *= custom_alpha; -	frag_color = col; +  +    float factor = smoothstep(0.0f, 0.9f, custom_alpha); + +    col.a = (col.a * factor) * 32.0f; +    col.a *= twinkle(); + +	frag_data[0] = col; +    frag_data[1] = vec4(0.0f); +    frag_data[2] = vec4(0.0, 1.0, 0.0, 1.0);  } + diff --git a/indra/newview/app_settings/shaders/class1/deferred/starsV.glsl b/indra/newview/app_settings/shaders/class1/deferred/starsV.glsl index 8bc5b06379..e14d02a4a9 100644 --- a/indra/newview/app_settings/shaders/class1/deferred/starsV.glsl +++ b/indra/newview/app_settings/shaders/class1/deferred/starsV.glsl @@ -25,6 +25,7 @@  uniform mat4 texture_matrix0;  uniform mat4 modelview_projection_matrix; +uniform float time;  ATTRIBUTE vec3 position;  ATTRIBUTE vec4 diffuse_color; @@ -32,11 +33,14 @@ ATTRIBUTE vec2 texcoord0;  VARYING vec4 vertex_color;  VARYING vec2 vary_texcoord0; +VARYING vec2 screenpos;  void main()  {  	//transform vertex  	gl_Position = modelview_projection_matrix * vec4(position.xyz, 1.0);  +    float t = mod(time, 1.25f); +    screenpos = position.xy * vec2(t, t);  	vary_texcoord0 = (texture_matrix0 * vec4(texcoord0,0,1)).xy;  	vertex_color = diffuse_color;  } diff --git a/indra/newview/lldrawpoolwlsky.cpp b/indra/newview/lldrawpoolwlsky.cpp index 04f358ba79..8a2941e20a 100644 --- a/indra/newview/lldrawpoolwlsky.cpp +++ b/indra/newview/lldrawpoolwlsky.cpp @@ -44,8 +44,6 @@  #include "llenvironment.h"   #include "llatmosphere.h" -#pragma optimize("", off) -  static LLStaticHashedString sCamPosLocal("camPosLocal");  static LLStaticHashedString sCustomAlpha("custom_alpha"); @@ -54,6 +52,8 @@ static LLGLSLShader* sky_shader   = NULL;  static LLGLSLShader* sun_shader   = NULL;  static LLGLSLShader* moon_shader  = NULL; +static float sStarTime; +  LLDrawPoolWLSky::LLDrawPoolWLSky(void) :  	LLDrawPool(POOL_WL_SKY)  { diff --git a/indra/newview/llenvironment.cpp b/indra/newview/llenvironment.cpp index ed25120241..3a1aec6319 100644 --- a/indra/newview/llenvironment.cpp +++ b/indra/newview/llenvironment.cpp @@ -444,11 +444,15 @@ F32 LLEnvironment::getWaterHeight() const  bool LLEnvironment::getIsSunUp() const  { +    if (!mCurrentEnvironment || !mCurrentEnvironment->getSky()) +        return false;      return mCurrentEnvironment->getSky()->getIsSunUp();  }  bool LLEnvironment::getIsMoonUp() const  { +    if (!mCurrentEnvironment || !mCurrentEnvironment->getSky()) +        return false;      return mCurrentEnvironment->getSky()->getIsMoonUp();  } @@ -1628,14 +1632,13 @@ void LLEnvironment::DayInstance::setSky(const LLSettingsSky::ptr_t &psky)      mSky->mReplaced |= different_sky;      mSky->update();      mBlenderSky.reset(); -/* +      if (gAtmosphere)      {          AtmosphericModelSettings settings;          LLEnvironment::getAtmosphericModelSettings(settings, psky);          gAtmosphere->configureAtmosphericModel(settings);      } -*/  }  void LLEnvironment::DayInstance::setWater(const LLSettingsWater::ptr_t &pwater) diff --git a/indra/newview/llfloatereditextdaycycle.cpp b/indra/newview/llfloatereditextdaycycle.cpp index 9c3a48c412..ed60dd4303 100644 --- a/indra/newview/llfloatereditextdaycycle.cpp +++ b/indra/newview/llfloatereditextdaycycle.cpp @@ -173,7 +173,7 @@ BOOL LLFloaterEditExtDayCycle::postBuild()      mImportButton = getChild<LLButton>(BTN_IMPORT, true);      mLoadFrame = getChild<LLButton>(BTN_LOADFRAME, true); -    mFlyoutControl = new LLFlyoutComboBtnCtrl(this, BTN_SAVE, BTN_FLYOUT, XML_FLYOUTMENU_FILE); +    mFlyoutControl = new LLFlyoutComboBtnCtrl(this, BTN_SAVE, BTN_FLYOUT, XML_FLYOUTMENU_FILE, false);      mFlyoutControl->setAction([this](LLUICtrl *ctrl, const LLSD &data) { onButtonApply(ctrl, data); });      getChild<LLButton>(BTN_CANCEL, true)->setCommitCallback([this](LLUICtrl *ctrl, const LLSD &data) { onClickCloseBtn(); }); @@ -343,8 +343,11 @@ void LLFloaterEditExtDayCycle::onClose(bool app_quitting)  void LLFloaterEditExtDayCycle::onFocusReceived()  { -    updateEditEnvironment(); -    LLEnvironment::instance().setSelectedEnvironment(LLEnvironment::ENV_EDIT, LLEnvironment::TRANSITION_FAST); +    if (isInVisibleChain()) +    { +        updateEditEnvironment(); +        LLEnvironment::instance().setSelectedEnvironment(LLEnvironment::ENV_EDIT, LLEnvironment::TRANSITION_FAST); +    }  }  void LLFloaterEditExtDayCycle::onFocusLost() diff --git a/indra/newview/llfloaterfixedenvironment.cpp b/indra/newview/llfloaterfixedenvironment.cpp index 7ff1663942..d38098c0a6 100644 --- a/indra/newview/llfloaterfixedenvironment.cpp +++ b/indra/newview/llfloaterfixedenvironment.cpp @@ -108,7 +108,7 @@ BOOL LLFloaterFixedEnvironment::postBuild()      getChild<LLButton>(BUTTON_NAME_CANCEL)->setClickedCallback([this](LLUICtrl *, const LLSD &) { onClickCloseBtn(); });      getChild<LLButton>(BUTTON_NAME_LOAD)->setClickedCallback([this](LLUICtrl *, const LLSD &) { onButtonLoad(); }); -    mFlyoutControl = new LLFlyoutComboBtnCtrl(this, BUTTON_NAME_COMMIT, BUTTON_NAME_FLYOUT, XML_FLYOUTMENU_FILE); +    mFlyoutControl = new LLFlyoutComboBtnCtrl(this, BUTTON_NAME_COMMIT, BUTTON_NAME_FLYOUT, XML_FLYOUTMENU_FILE, false);      mFlyoutControl->setAction([this](LLUICtrl *ctrl, const LLSD &data) { onButtonApply(ctrl, data); });      mFlyoutControl->setMenuItemVisible(ACTION_COMMIT, false); @@ -147,8 +147,11 @@ void LLFloaterFixedEnvironment::onClose(bool app_quitting)  void LLFloaterFixedEnvironment::onFocusReceived()  { -    updateEditEnvironment(); -    LLEnvironment::instance().setSelectedEnvironment(LLEnvironment::ENV_EDIT, LLEnvironment::TRANSITION_FAST); +    if (isInVisibleChain()) +    { +        updateEditEnvironment(); +        LLEnvironment::instance().setSelectedEnvironment(LLEnvironment::ENV_EDIT, LLEnvironment::TRANSITION_FAST); +    }  }  void LLFloaterFixedEnvironment::onFocusLost() diff --git a/indra/newview/llflyoutcombobtn.cpp b/indra/newview/llflyoutcombobtn.cpp index d1a8b46c92..b008ee13be 100644 --- a/indra/newview/llflyoutcombobtn.cpp +++ b/indra/newview/llflyoutcombobtn.cpp @@ -29,14 +29,21 @@  #include "llflyoutcombobtn.h"  #include "llviewermenu.h" -LLFlyoutComboBtnCtrl::LLFlyoutComboBtnCtrl(LLPanel* parent, const std::string &action_button, const std::string &flyout_button, const std::string &menu_file) : -	mParent(parent), +LLFlyoutComboBtnCtrl::LLFlyoutComboBtnCtrl(LLPanel* parent, +                                           const std::string &action_button, +                                           const std::string &flyout_button, +                                           const std::string &menu_file, +                                           bool apply_immediately) : +    mParent(parent),      mActionButton(action_button), -    mFlyoutButton(flyout_button) +    mFlyoutButton(flyout_button), +    mApplyImmediately(apply_immediately)  { -	// register action mapping before creating menu -	LLUICtrl::CommitCallbackRegistry::ScopedRegistrar save_registar; +    // register action mapping before creating menu +    LLUICtrl::CommitCallbackRegistry::ScopedRegistrar save_registar;      save_registar.add("FlyoutCombo.Button.Action", [this](LLUICtrl *ctrl, const LLSD &data) { onFlyoutItemSelected(ctrl, data); }); +    LLUICtrl::EnableCallbackRegistry::ScopedRegistrar enabled_rgistar; +    enabled_rgistar.add("FlyoutCombo.Button.Check", [this](LLUICtrl *ctrl, const LLSD &data) { return onFlyoutItemCheck(ctrl, data); });      mParent->childSetAction(flyout_button, [this](LLUICtrl *ctrl, const LLSD &data) { onFlyoutButton(ctrl, data); });      mParent->childSetAction(action_button, [this](LLUICtrl *ctrl, const LLSD &data) { onFlyoutAction(ctrl, data); }); @@ -119,7 +126,24 @@ void LLFlyoutComboBtnCtrl::onFlyoutItemSelected(LLUICtrl *ctrl, const LLSD &data      LLMenuItemGL *pmenuitem = static_cast<LLMenuItemGL*>(ctrl);      setSelectedItem(pmenuitem); -    onFlyoutAction(pmenuitem, data); +    if (mApplyImmediately) +    { +        onFlyoutAction(pmenuitem, data); +    } +} + +bool LLFlyoutComboBtnCtrl::onFlyoutItemCheck(LLUICtrl *ctrl, const LLSD &data) +{ +    if (mApplyImmediately) +    { +        return false; +    } +    else +    { +        LLMenuItemGL *pmenuitem = static_cast<LLMenuItemGL*>(ctrl); + +        return pmenuitem->getName() == mSelectedName; +    }  }  void LLFlyoutComboBtnCtrl::onFlyoutAction(LLUICtrl *ctrl, const LLSD &data) diff --git a/indra/newview/llflyoutcombobtn.h b/indra/newview/llflyoutcombobtn.h index 741ad03a37..b0dd4abadf 100644 --- a/indra/newview/llflyoutcombobtn.h +++ b/indra/newview/llflyoutcombobtn.h @@ -37,7 +37,11 @@ class LLFlyoutComboBtnCtrl  {      LOG_CLASS(LLFlyoutComboBtnCtrl);  public: -    LLFlyoutComboBtnCtrl(LLPanel* parent, const std::string &action_button, const std::string &flyout_button, const std::string &menu_file); +    LLFlyoutComboBtnCtrl(LLPanel* parent, +                         const std::string &action_button, +                         const std::string &flyout_button, +                         const std::string &menu_file, +                         bool apply_immediately = true);  	void setMenuItemEnabled(const std::string &item, bool enabled);  	void setShownBtnEnabled(bool enabled); @@ -52,6 +56,7 @@ public:  protected:      void onFlyoutButton(LLUICtrl *, const LLSD &);      void onFlyoutItemSelected(LLUICtrl *, const LLSD &); +    bool onFlyoutItemCheck(LLUICtrl *, const LLSD &);      void onFlyoutAction(LLUICtrl *, const LLSD &);      void setSelectedItem(LLMenuItemGL *pitem); @@ -63,6 +68,7 @@ private:      std::string                 mFlyoutButton;      std::string                 mSelectedName; +    bool                        mApplyImmediately;      LLUICtrl::commit_signal_t   mActionSignal;  }; diff --git a/indra/newview/llsettingsvo.cpp b/indra/newview/llsettingsvo.cpp index 12f487398f..6426e95f6c 100644 --- a/indra/newview/llsettingsvo.cpp +++ b/indra/newview/llsettingsvo.cpp @@ -67,7 +67,7 @@  namespace   {      LLSD ensure_array_4(LLSD in, F32 fill); -    LLSD read_legacy_preset_data(const std::string& path); +    LLSD read_legacy_preset_data(const std::string &name, const std::string& path);      //-------------------------------------------------------------------------      class LLSettingsInventoryCB : public LLInventoryCallback @@ -440,30 +440,13 @@ LLSettingsSky::ptr_t LLSettingsVOSky::buildFromLegacyPreset(const std::string &n      return skyp;  } -namespace -{ -    // This is a disturbing hack -    std::string legacy_name_to_filename(const std::string &name) -    { -        std::string fixedname(LLURI::escape(name)); - -        boost::algorithm::replace_all(fixedname, "-", "%2D"); -        return fixedname; -    } -} -  LLSettingsSky::ptr_t LLSettingsVOSky::buildFromLegacyPresetFile(const std::string &name, const std::string &path)  { -    std::string full_path(path); -    std::string full_name(legacy_name_to_filename(name)); -    full_name += ".xml"; - -    gDirUtilp->append(full_path, full_name); -    LLSD legacy_data = read_legacy_preset_data(full_path); +    LLSD legacy_data = read_legacy_preset_data(name, path);      if (!legacy_data)      { -        LL_WARNS("SETTINGS") << "Could not load legacy Windlight \"" << name << "\" from " << full_path << LL_ENDL; +        LL_WARNS("SETTINGS") << "Could not load legacy Windlight \"" << name << "\" from " << path << LL_ENDL;          return ptr_t();      } @@ -707,16 +690,11 @@ LLSettingsWater::ptr_t LLSettingsVOWater::buildFromLegacyPreset(const std::strin  LLSettingsWater::ptr_t LLSettingsVOWater::buildFromLegacyPresetFile(const std::string &name, const std::string &path)  { -    std::string full_path(path); -    std::string full_name(legacy_name_to_filename(name)); -    full_name += ".xml"; - -    gDirUtilp->append(full_path, full_name); -    LLSD legacy_data = read_legacy_preset_data(full_path); +    LLSD legacy_data = read_legacy_preset_data(name, path);      if (!legacy_data)      { -        LL_WARNS("SETTINGS") << "Could not load legacy Windlight \"" << name << "\" from " << full_path << LL_ENDL; +        LL_WARNS("SETTINGS") << "Could not load legacy Windlight \"" << name << "\" from " << path << LL_ENDL;          return ptr_t();      } @@ -961,16 +939,11 @@ LLSettingsDay::ptr_t LLSettingsVODay::buildFromLegacyPreset(const std::string &n  LLSettingsDay::ptr_t LLSettingsVODay::buildFromLegacyPresetFile(const std::string &name, const std::string &path)  { -    std::string full_path(path); -    std::string full_name(legacy_name_to_filename(name)); -    full_name += ".xml"; - -    gDirUtilp->append(full_path, full_name); -    LLSD legacy_data = read_legacy_preset_data(full_path); +    LLSD legacy_data = read_legacy_preset_data(name, path);      if (!legacy_data)      { -        LL_WARNS("SETTINGS") << "Could not load legacy Windlight \"" << name << "\" from " << full_path << LL_ENDL; +        LL_WARNS("SETTINGS") << "Could not load legacy Windlight \"" << name << "\" from " << path << LL_ENDL;          return ptr_t();      } @@ -1261,15 +1234,55 @@ namespace          return out;      } +    // This is a disturbing hack +    std::string legacy_name_to_filename(const std::string &name, bool convertdash = false) +    { +        std::string fixedname(LLURI::escape(name)); + +        if (convertdash) +            boost::algorithm::replace_all(fixedname, "-", "%2D"); + +        return fixedname; +    } +      //--------------------------------------------------------------------- -    LLSD read_legacy_preset_data(const std::string& path) +    LLSD read_legacy_preset_data(const std::string &name, const std::string& path)      {          llifstream xml_file; -//      std::string name(gDirUtilp->getBaseFileName(LLURI::unescape(path), /*strip_exten = */ true)); -        xml_file.open(path.c_str()); +        std::string full_path(path); +        std::string full_name(name); +        full_name += ".xml"; +        gDirUtilp->append(full_path, full_name); + +        xml_file.open(full_path.c_str());          if (!xml_file) -            return LLSD(); +        { +            std::string bad_path(full_path); +            full_path = path; +            full_name = legacy_name_to_filename(name); +            full_name += ".xml"; +            gDirUtilp->append(full_path, full_name); + +            LL_INFOS("LEGACYSETTING") << "Could not open \"" << bad_path << "\" trying escaped \"" << full_path << "\"" << LL_ENDL; + +            xml_file.open(full_path.c_str()); +            if (!xml_file) +            { +                LL_WARNS("LEGACYSETTING") << "Unable to open legacy windlight \"" << name << "\" from " << path << LL_ENDL; + +                full_path = path; +                full_name = legacy_name_to_filename(name, true); +                full_name += ".xml"; +                gDirUtilp->append(full_path, full_name); +                xml_file.open(full_path.c_str()); +                if (!xml_file) +                { +                    LL_WARNS("LEGACYSETTING") << "Unable to open legacy windlight \"" << name << "\" from " << path << LL_ENDL; +                    return LLSD(); +                } +            } +        }          LLSD params_data;          LLPointer<LLSDParser> parser = new LLSDXMLParser(); diff --git a/indra/newview/llviewershadermgr.cpp b/indra/newview/llviewershadermgr.cpp index cd378c0a56..05c722a114 100644 --- a/indra/newview/llviewershadermgr.cpp +++ b/indra/newview/llviewershadermgr.cpp @@ -46,6 +46,8 @@  #include "llenvironment.h"  #include "llatmosphere.h" +#pragma optimize("", off) +  #ifdef LL_RELEASE_FOR_DOWNLOAD  #define UNIFORM_ERRS LL_WARNS_ONCE("Shader")  #else diff --git a/indra/newview/llvosky.cpp b/indra/newview/llvosky.cpp index 81632796e4..d3b1f1459f 100644 --- a/indra/newview/llvosky.cpp +++ b/indra/newview/llvosky.cpp @@ -59,6 +59,8 @@  #undef min  #undef max +#pragma optimize("", off) +  namespace  {      const S32 NUM_TILES_X = 8; @@ -376,6 +378,9 @@ LLVOSky::LLVOSky(const LLUUID &id, const LLPCode pcode, LLViewerRegion *regionp)  	mbCanSelect = FALSE;  	mUpdateTimer.reset(); +    mForceUpdateThrottle.setTimerExpirySec(UPDATE_EXPRY); +    mForceUpdateThrottle.reset(); +  	for (S32 i = 0; i < 6; i++)  	{  		mSkyTex[i].init(); @@ -585,8 +590,7 @@ void LLVOSky::idleUpdate(LLAgent &agent, const F64 &time)  }  bool LLVOSky::updateSky() -{ -    LLTimer forceupdThrottle; +{          LLSettingsSky::ptr_t psky = LLEnvironment::instance().getCurrentSky();      LLColor4 total_ambient = psky->getTotalAmbient(); @@ -640,15 +644,29 @@ bool LLVOSky::updateSky()          bool light_direction_changed = (dot_lighting < LIGHT_DIRECTION_THRESHOLD);          bool color_changed = (delta_color.length() >= COLOR_CHANGE_THRESHOLD); -        mForceUpdate = mForceUpdate || light_direction_changed; -        mForceUpdate = mForceUpdate || color_changed; -        mForceUpdate = mForceUpdate || !mInitialized; +        if (light_direction_changed) +        { +            mForceUpdate = true; +        } + +        if (color_changed) +        { +            mForceUpdate = true; +        } + +        if (!mInitialized) +        { +            mForceUpdate = true; +        } +        //mForceUpdate = mForceUpdate || light_direction_changed; +        //mForceUpdate = mForceUpdate || color_changed; +        //mForceUpdate = mForceUpdate || !mInitialized; -        if (mForceUpdate && forceupdThrottle.hasExpired()) +        if (mForceUpdate && mForceUpdateThrottle.hasExpired())  		{              LL_RECORD_BLOCK_TIME(FTM_VOSKY_UPDATEFORCED); -            forceupdThrottle.setTimerExpirySec(UPDATE_EXPRY); +            mForceUpdateThrottle.setTimerExpirySec(UPDATE_EXPRY);  			LLSkyTex::stepCurrent();			 diff --git a/indra/newview/llvosky.h b/indra/newview/llvosky.h index 4943c48f7c..be69757fc7 100644 --- a/indra/newview/llvosky.h +++ b/indra/newview/llvosky.h @@ -338,7 +338,7 @@ protected:  	S32					 mDrawRefl;  	LLFrameTimer		mUpdateTimer; - +    LLTimer             mForceUpdateThrottle;  	bool                mHeavenlyBodyUpdated ;      LLAtmospherics      m_legacyAtmospherics; diff --git a/indra/newview/llvowlsky.cpp b/indra/newview/llvowlsky.cpp index db9452cce9..741d0e3992 100644 --- a/indra/newview/llvowlsky.cpp +++ b/indra/newview/llvowlsky.cpp @@ -637,7 +637,7 @@ BOOL LLVOWLSky::updateStarGeometry(LLDrawable *drawable)  		LLVector3 left = at%LLVector3(0,0,1);  		LLVector3 up = at%left; -		F32 sc = 0.5f+ll_frand()*1.25f; +		F32 sc = 0.8f + ll_frand()*2.5f;  		left *= sc;  		up *= sc; diff --git a/indra/newview/skins/default/xui/en/floater_edit_ext_day_cycle.xml b/indra/newview/skins/default/xui/en/floater_edit_ext_day_cycle.xml index 61299a43bd..c8843db28b 100644 --- a/indra/newview/skins/default/xui/en/floater_edit_ext_day_cycle.xml +++ b/indra/newview/skins/default/xui/en/floater_edit_ext_day_cycle.xml @@ -520,15 +520,6 @@ Select a key frame from the timeline above to edit settings.                                  left_delta="0"                                  top_pad="5"                                  name="moon_panel" /> -                      <panel -                                border="true" -                                class="panel_settings_density" -                                filename="panel_settings_sky_density.xml" -                                label="Density" -                                layout="topleft" -                                left_delta="0" -                                top_pad="5" -                                name="panel_settings_sky_density" />                      </tab_container>                  </layout_panel>                      </layout_stack> @@ -547,7 +538,7 @@ Select a key frame from the timeline above to edit settings.                      left="5"                      top_pad="0"                      name="save_btn" -                    width="150" /> +                    width="156" />              <button                      follows="top|left" diff --git a/indra/newview/skins/default/xui/en/menu_save_settings.xml b/indra/newview/skins/default/xui/en/menu_save_settings.xml index e3ed9a1741..84dacaa8b8 100644 --- a/indra/newview/skins/default/xui/en/menu_save_settings.xml +++ b/indra/newview/skins/default/xui/en/menu_save_settings.xml @@ -5,46 +5,64 @@          mouse_opaque="false"          name="save_settings_menu"          width="120"> -    <menu_item_call  +    <menu_item_check              name="save_settings"               label="Save"> -        <menu_item_call.on_click  +        <menu_item_check.on_check +                function="FlyoutCombo.Button.Check" +                userdata="save" /> +        <menu_item_check.on_click                  function="FlyoutCombo.Button.Action"                  userdata="save"/> -    </menu_item_call> -    <menu_item_call  +    </menu_item_check> +    <menu_item_check               name="save_as_new_settings"               label="Save As"> -        <menu_item_call.on_click  +        <menu_item_check.on_check +                function="FlyoutCombo.Button.Check" +                userdata="saveas" /> +        <menu_item_check.on_click                  function="FlyoutCombo.Button.Action"                  userdata="saveas" /> -    </menu_item_call> -    <menu_item_call +    </menu_item_check> +    <menu_item_check              name="commit_changes"              label="Commit"> -        <menu_item_call.on_click  +        <menu_item_check.on_check +                function="FlyoutCombo.Button.Check" +                userdata="commit" /> +        <menu_item_check.on_click                  function="FlyoutCombo.Button.Action"                  userdata="commit" /> -    </menu_item_call> -    <menu_item_call +    </menu_item_check> +    <menu_item_check              name="apply_local"              label="Apply Only To Myself"> -        <menu_item_call.on_click  +        <menu_item_check.on_check +                function="FlyoutCombo.Button.Check" +                userdata="local" /> +        <menu_item_check.on_click                   function="FlyoutCombo.Button.Action"                  userdata="local" /> -    </menu_item_call> -    <menu_item_call +    </menu_item_check> +    <menu_item_check              name="apply_parcel"              label="Apply To Parcel"> -        <menu_item_call.on_click  +        <menu_item_check.on_check +                function="FlyoutCombo.Button.Check" +                userdata="parcel" /> +        <menu_item_check.on_click                  function="FlyoutCombo.Button.Action"                  userdata="parcel" /> -    </menu_item_call> -    <menu_item_call +    </menu_item_check> +    <menu_item_check              name="apply_region"              label="Apply To Region"> -        <menu_item_call.on_click  +        <menu_item_check.on_check +                function="FlyoutCombo.Button.Check" +                userdata="region" /> +        <menu_item_check.on_click                  function="FlyoutCombo.Button.Action"                  userdata="region" /> -    </menu_item_call> +    </menu_item_check>  </toggleable_menu> diff --git a/indra/newview/skins/default/xui/en/panel_settings_sky_sunmoon.xml b/indra/newview/skins/default/xui/en/panel_settings_sky_sunmoon.xml index 4b72bbbe0e..0ec3528718 100644 --- a/indra/newview/skins/default/xui/en/panel_settings_sky_sunmoon.xml +++ b/indra/newview/skins/default/xui/en/panel_settings_sky_sunmoon.xml @@ -171,7 +171,7 @@                      layout="topleft"                      left_delta="5"                      min_val="0" -                    max_val="2" +                    max_val="512"                      name="star_brightness"                      top_delta="15"                      width="250" | 
