summaryrefslogtreecommitdiff
path: root/D145541.diff
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2022-05-30 21:40:33 +0200
committerMartin Stransky <stransky@redhat.com>2022-05-30 21:40:33 +0200
commit888df264aa7c71281d5c95b521a91a3639bc3ab2 (patch)
treef905eb776af1e2a1d5c62bb70bd2999d05c84019 /D145541.diff
parentAdded fix for mzbz#1771104 (diff)
downloadlibrewolf-fedora-ff-888df264aa7c71281d5c95b521a91a3639bc3ab2.tar.gz
librewolf-fedora-ff-888df264aa7c71281d5c95b521a91a3639bc3ab2.tar.bz2
librewolf-fedora-ff-888df264aa7c71281d5c95b521a91a3639bc3ab2.zip
Update to 101.0
Diffstat (limited to 'D145541.diff')
-rw-r--r--D145541.diff21
1 files changed, 0 insertions, 21 deletions
diff --git a/D145541.diff b/D145541.diff
deleted file mode 100644
index 7ca3a2e..0000000
--- a/D145541.diff
+++ /dev/null
@@ -1,21 +0,0 @@
-diff --git a/widget/gtk/MozContainerWayland.cpp b/widget/gtk/MozContainerWayland.cpp
---- a/widget/gtk/MozContainerWayland.cpp
-+++ b/widget/gtk/MozContainerWayland.cpp
-@@ -527,10 +527,16 @@
- return;
- }
-
- LOGWAYLAND("%s [%p] scale %d\n", __FUNCTION__,
- (void*)moz_container_get_nsWindow(container), scale);
-+ // There is a chance that the attached wl_buffer has not yet been doubled
-+ // on the main thread when scale factor changed to 2. This leads to
-+ // crash with the following message:
-+ // Buffer size (AxB) must be an integer multiple of the buffer_scale (2)
-+ // Removing the possibly wrong wl_buffer to prevent that crash:
-+ wl_surface_attach(wl_container->surface, nullptr, 0, 0);
- wl_surface_set_buffer_scale(wl_container->surface, scale);
- wl_container->buffer_scale = scale;
- }
- }
-
-
bgstack15