Fix bug with translation in ExpandableNotificationRow.

The translation X should only be used if the entire Notification row is
translating (meaning that mShouldTranslateContents is false).

Test: booted up on AAE headunit and Angler device
Change-Id: I5d04f2bd64cb79421ad30f844ba5e6aa8d1f105d
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/ExpandableNotificationRow.java b/packages/SystemUI/src/com/android/systemui/statusbar/ExpandableNotificationRow.java
index 7277ff9..30bb181 100644
--- a/packages/SystemUI/src/com/android/systemui/statusbar/ExpandableNotificationRow.java
+++ b/packages/SystemUI/src/com/android/systemui/statusbar/ExpandableNotificationRow.java
@@ -1271,7 +1271,7 @@
 
     @Override
     public float getTranslation() {
-        if (mShouldTranslateContents) {
+        if (!mShouldTranslateContents) {
             return getTranslationX();
         }