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

Commit b27b6f15 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix unwanted icon animation when pressing notif" into main

parents 961dc34b 67649cfc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -178,7 +178,7 @@ constructor(@ShadeDisplayAware private val sysuiContext: Context, dumpManager: D
        val options = iconOptions(context, withWorkProfileBadge)
        val badgedIcon = iconFactory.createBadgedIconBitmap(icon, options)
        val creationFlags = if (themed) BitmapInfo.FLAG_THEMED else 0
        return badgedIcon.newIcon(sysuiContext, creationFlags)
        return badgedIcon.newIcon(sysuiContext, creationFlags).apply { isAnimationEnabled = false }
    }

    @WorkerThread