From e9eb07d3886606586c6bc0a3a528706a1635b6e9 Mon Sep 17 00:00:00 2001 From: Zach Fox Date: Wed, 11 Sep 2019 10:20:59 -0700 Subject: [PATCH] BUGZ-1339: Disable the Emote Indicator animation to prevent it from being 'jittery' --- .../simplifiedEmote/ui/qml/SimplifiedEmoteIndicator.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/simplifiedUI/simplifiedEmote/ui/qml/SimplifiedEmoteIndicator.qml b/scripts/simplifiedUI/simplifiedEmote/ui/qml/SimplifiedEmoteIndicator.qml index 787ccadd62..bbd1d4d735 100644 --- a/scripts/simplifiedUI/simplifiedEmote/ui/qml/SimplifiedEmoteIndicator.qml +++ b/scripts/simplifiedUI/simplifiedEmote/ui/qml/SimplifiedEmoteIndicator.qml @@ -45,7 +45,8 @@ Rectangle { } Behavior on requestedWidth { - enabled: true + enabled: false // Set this to `true` once we have a different windowing system that better supports on-screen widgets + // like the Emote Indicator. SmoothedAnimation { duration: 220 } }