Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 561b8aee authored by Riddle Hsu's avatar Riddle Hsu Committed by Android (Google) Code Review
Browse files

Merge "Remove enabled flag respect_animation_clip" into main

parents a882d5ad 39fc5eb2
Loading
Loading
Loading
Loading
+0 −11
Original line number Diff line number Diff line
@@ -18,17 +18,6 @@ flag {
    }
}

flag {
  name: "respect_animation_clip"
  namespace: "windowing_frontend"
  description: "Fix missing clip transformation of animation"
  bug: "376601866"
  is_fixed_read_only: true
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
  name: "cache_window_style"
  namespace: "windowing_frontend"
+1 −2
Original line number Diff line number Diff line
@@ -137,8 +137,7 @@ public class DefaultSurfaceAnimator {
            if (mClipRect != null) {
                boolean needCrop = false;
                mAnimClipRect.set(mClipRect);
                if (transformation.hasClipRect()
                        && com.android.window.flags.Flags.respectAnimationClip()) {
                if (transformation.hasClipRect()) {
                    mAnimClipRect.intersectUnchecked(transformation.getClipRect());
                    needCrop = true;
                }