diff options
author | Stephan Hartmann <sultan@gentoo.org> | 2022-01-24 10:32:53 +0100 |
---|---|---|
committer | Stephan Hartmann <sultan@gentoo.org> | 2022-01-24 10:33:18 +0100 |
commit | 1a9e3fb2365b41893c688580123a49ad64068d4a (patch) | |
tree | ffd153970921bf016d3092fe1020d70626eb9762 /www-client/chromium/files | |
parent | sci-mathematics/minisat: reformat metadata.xml (diff) | |
download | gentoo-1a9e3fb2365b41893c688580123a49ad64068d4a.tar.gz gentoo-1a9e3fb2365b41893c688580123a49ad64068d4a.tar.bz2 gentoo-1a9e3fb2365b41893c688580123a49ad64068d4a.zip |
www-client/chromium: dev channel bump to 99.0.4840.0
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Stephan Hartmann <sultan@gentoo.org>
Diffstat (limited to 'www-client/chromium/files')
-rw-r--r-- | www-client/chromium/files/chromium-97-fix-tag-dragging-i3.patch | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/www-client/chromium/files/chromium-97-fix-tag-dragging-i3.patch b/www-client/chromium/files/chromium-97-fix-tag-dragging-i3.patch deleted file mode 100644 index e31f0112478f..000000000000 --- a/www-client/chromium/files/chromium-97-fix-tag-dragging-i3.patch +++ /dev/null @@ -1,35 +0,0 @@ -From 98715f8730c5f389976538848e58401db66f9b5d Mon Sep 17 00:00:00 2001 -From: Marco Genasci <fedeliallalinea@gmail.com> -Date: Wed, 12 Jan 2022 16:11:15 +0100 -Subject: [PATCH 2/2] [X11] Fix tag dragging in i3 - -ref: https://bugs.chromium.org/p/chromium/issues/detail?id=1279532 -caused by: https://bugs.chromium.org/p/chromium/issues/detail?id=1263023 -Patch from: -https://chromium-review.googlesource.com/c/chromium/src/+/3381679 ---- - ui/platform_window/x11/x11_topmost_window_finder.cc | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/ui/platform_window/x11/x11_topmost_window_finder.cc b/ui/platform_window/x11/x11_topmost_window_finder.cc -index e20bf0abf..c9c672c60 100644 ---- a/ui/platform_window/x11/x11_topmost_window_finder.cc -+++ b/ui/platform_window/x11/x11_topmost_window_finder.cc -@@ -42,12 +42,12 @@ bool EnumerateChildren(ShouldStopIteratingCallback should_stop_iterating, - // reverse-iterate the list to check the windows from top-to-bottom. - std::vector<x11::Window>::reverse_iterator iter; - for (iter = windows.rbegin(); iter != windows.rend(); iter++) { -- if (IsWindowNamed(*iter) && should_stop_iterating.Run(*iter)) -- return true; - if (depth < max_depth) { - if (EnumerateChildren(should_stop_iterating, *iter, max_depth, depth + 1)) - return true; - } -+ if (IsWindowNamed(*iter) && should_stop_iterating.Run(*iter)) -+ return true; - } - - return false; --- -2.34.1 - |