summaryrefslogtreecommitdiff
path: root/mail/thunderbird/files/patch-bug1602730_comment5
diff options
context:
space:
mode:
authorChristoph Moench-Tegeder <cmt@FreeBSD.org>2022-09-11 15:12:49 +0200
committerChristoph Moench-Tegeder <cmt@FreeBSD.org>2022-09-11 15:12:49 +0200
commit4185660c39ad992441cae35833fc69c1295a4bf8 (patch)
treeb2a0934b7a84570ad59fc13caa5c882bdfd11741 /mail/thunderbird/files/patch-bug1602730_comment5
parentwww/firefox-esr: update to 102.2.0 (diff)
mail/thunderbird: update to 102.2.2
Release Notes: https://www.thunderbird.net/en-US/thunderbird/102.2.2/releasenotes/
Diffstat (limited to 'mail/thunderbird/files/patch-bug1602730_comment5')
-rw-r--r--mail/thunderbird/files/patch-bug1602730_comment524
1 files changed, 0 insertions, 24 deletions
diff --git a/mail/thunderbird/files/patch-bug1602730_comment5 b/mail/thunderbird/files/patch-bug1602730_comment5
deleted file mode 100644
index 49f9f4321df8..000000000000
--- a/mail/thunderbird/files/patch-bug1602730_comment5
+++ /dev/null
@@ -1,24 +0,0 @@
---- gfx/layers/composite/CompositableHost.cpp.orig 2020-09-12 21:47:42 UTC
-+++ gfx/layers/composite/CompositableHost.cpp
-@@ -13,6 +13,7 @@
- #include "ImageHost.h" // for ImageHostBuffered, etc
- #include "Layers.h"
- #include "TiledContentHost.h" // for TiledContentHost
-+#include "mozilla/EndianUtils.h"
- #include "mozilla/gfx/gfxVars.h"
- #include "mozilla/layers/LayersSurfaces.h" // for SurfaceDescriptor
- #include "mozilla/layers/TextureHost.h" // for TextureHost, etc
-@@ -92,9 +93,13 @@ bool CompositableHost::AddMaskEffect(EffectChain& aEff
- }
- MOZ_ASSERT(source);
-
-+ // Setting an alpha-mask here breaks the URL-bar on big endian (s390x)
-+ // if the typed URL is too long for the textbox (automatic scrolling needed)
-+#if MOZ_LITTLE_ENDIAN()
- RefPtr<EffectMask> effect =
- new EffectMask(source, source->GetSize(), aTransform);
- aEffects.mSecondaryEffects[EffectTypes::MASK] = effect;
-+#endif
- return true;
- }
-