0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-06-01 23:52:13 +00:00
Files
termux-packages/x11-packages/firefox/0026-fix-popup-white-borders.patch
Robert Kirkman c60d807c4a bump(x11/firefox): 137.0
- Fixes #24069
2025-04-05 11:15:12 -05:00

17 lines
581 B
Diff

--- a/gfx/webrender_bindings/src/bindings.rs
+++ b/gfx/webrender_bindings/src/bindings.rs
@@ -1689,12 +1689,7 @@
let cached_programs = program_cache.map(|program_cache| Rc::clone(&program_cache.rc_get()));
- let color = if cfg!(target_os = "android") {
- // The color is for avoiding black flash before receiving display list.
- ColorF::new(1.0, 1.0, 1.0, 1.0)
- } else {
- ColorF::new(0.0, 0.0, 0.0, 0.0)
- };
+ let color = ColorF::new(0.0, 0.0, 0.0, 0.0);
let compositor_config = if software {
CompositorConfig::Native {