diff --git a/.github/workflows/tag-fs-build.yml b/.github/workflows/tag-fs-build.yml
index e38c891ffc..574de07d2e 100644
--- a/.github/workflows/tag-fs-build.yml
+++ b/.github/workflows/tag-fs-build.yml
@@ -134,12 +134,11 @@ jobs:
# Create the Tag (Conditional)
- name: Create tag
if: >
- ${{
- steps.get_inputs.outputs.release_type != 'Nightly' &&
- steps.get_inputs.outputs.release_type != 'Manual' &&
- steps.get_inputs.outputs.release_type != 'Profiling' &&
- steps.get_inputs.outputs.dry_run != 'true' &&
- steps.check_tag.outputs.tag_exists == 'false' }}
+ steps.get_inputs.outputs.release_type != 'Nightly' &&
+ steps.get_inputs.outputs.release_type != 'Manual' &&
+ steps.get_inputs.outputs.release_type != 'Profiling' &&
+ steps.get_inputs.outputs.dry_run != 'true' &&
+ steps.check_tag.outputs.tag_exists == 'false'
run: |
echo "Creating tag: ${{ steps.get_tag.outputs.tag_name }}"
git tag ${{ steps.get_tag.outputs.tag_name }}
@@ -148,8 +147,8 @@ jobs:
# Push the Tag to the Repository (Conditional)
- name: Push tag
if: >
- ${{ steps.get_inputs.outputs.dry_run != 'true' &&
- steps.check_tag.outputs.tag_exists == 'false' }}
+ steps.get_inputs.outputs.dry_run != 'true' &&
+ steps.check_tag.outputs.tag_exists == 'false'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
diff --git a/indra/llinventory/llsettingsbase.cpp b/indra/llinventory/llsettingsbase.cpp
index 0ee71de3a1..2143ae54a0 100644
--- a/indra/llinventory/llsettingsbase.cpp
+++ b/indra/llinventory/llsettingsbase.cpp
@@ -764,7 +764,14 @@ void LLSettingsBlender::update(const LLSettingsBase::BlendFactor& blendf)
F64 res = setBlendFactor(blendf);
llassert(res >= 0.0 && res <= 1.0);
(void)res;
- mTarget->update();
+ // FIRE-34805 another issue with missing EEP on or shortly after login.
+ // Ideally we'll find the true fix at a higher level. But for now fix the symptom.
+ // mTarget->update();
+ if(mTarget)
+ {
+ mTarget->update();
+ }
+ //
}
F64 LLSettingsBlender::setBlendFactor(const LLSettingsBase::BlendFactor& blendf_in)
diff --git a/indra/newview/app_settings/settings.xml b/indra/newview/app_settings/settings.xml
index 95794bff13..e394cc5784 100644
--- a/indra/newview/app_settings/settings.xml
+++ b/indra/newview/app_settings/settings.xml
@@ -8067,6 +8067,17 @@
Value
0
+ FSPoserStopPosingWhenClosed
+
FSPoserTrackpadSensitivity