From 6c7213993983b713b7dc0f6d5e398e6313a30135 Mon Sep 17 00:00:00 2001 From: Onuray Sahin Date: Wed, 8 Jun 2022 15:40:09 +0300 Subject: [PATCH 1/2] Fix flickering bottom bar of live location item. --- .../app/features/location/live/LocationLiveMessageBannerView.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/vector/src/main/java/im/vector/app/features/location/live/LocationLiveMessageBannerView.kt b/vector/src/main/java/im/vector/app/features/location/live/LocationLiveMessageBannerView.kt index 8cb552e3c4..51c7caed3a 100644 --- a/vector/src/main/java/im/vector/app/features/location/live/LocationLiveMessageBannerView.kt +++ b/vector/src/main/java/im/vector/app/features/location/live/LocationLiveMessageBannerView.kt @@ -70,6 +70,7 @@ class LocationLiveMessageBannerView @JvmOverloads constructor( GlideApp.with(context) .load(ColorDrawable(ThemeUtils.getColor(context, android.R.attr.colorBackground))) + .placeholder(binding.locationLiveMessageBannerBackground.drawable) .transform(GranularRoundedCorners(0f, 0f, viewState.bottomEndCornerRadiusInDp, viewState.bottomStartCornerRadiusInDp)) .into(background) } From 0f0d828655139d914b2bfd6b9d76697526e89051 Mon Sep 17 00:00:00 2001 From: Onuray Sahin Date: Wed, 8 Jun 2022 16:06:39 +0300 Subject: [PATCH 2/2] Changelog added. --- changelog.d/6264.bugfix | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog.d/6264.bugfix diff --git a/changelog.d/6264.bugfix b/changelog.d/6264.bugfix new file mode 100644 index 0000000000..1b14f0aa6e --- /dev/null +++ b/changelog.d/6264.bugfix @@ -0,0 +1 @@ +Fix flickering bottom bar of live location item