summarylogtreecommitdiffstats
path: root/0004-ozone-wayland-Fix-regression-with-hiding-nested-wind.patch
diff options
context:
space:
mode:
authorDaniel Playfair Cal2020-02-09 17:52:36 +1100
committerDaniel Playfair Cal2020-02-11 23:48:18 +1100
commit87bed1bf632b6f78c76aa4b95b32fefdea713503 (patch)
tree8879db8e95927f10a733bede3165a9130b1cb623 /0004-ozone-wayland-Fix-regression-with-hiding-nested-wind.patch
parent53d0cef916c867c66e7391ea89b57da33e5cb018 (diff)
downloadaur-87bed1bf632b6f78c76aa4b95b32fefdea713503.tar.gz
80.0.3987.87-1
Diffstat (limited to '0004-ozone-wayland-Fix-regression-with-hiding-nested-wind.patch')
-rw-r--r--0004-ozone-wayland-Fix-regression-with-hiding-nested-wind.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/0004-ozone-wayland-Fix-regression-with-hiding-nested-wind.patch b/0004-ozone-wayland-Fix-regression-with-hiding-nested-wind.patch
deleted file mode 100644
index 2e6b2a4b770c..000000000000
--- a/0004-ozone-wayland-Fix-regression-with-hiding-nested-wind.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 738a0d76c3102509e052927e49f978b197bc3a3c Mon Sep 17 00:00:00 2001
-From: Maksim Sisov <msisov@igalia.com>
-Date: Fri, 6 Dec 2019 19:19:30 +0000
-Subject: [PATCH 4/9] ozone/wayland: Fix regression with hiding nested windows.
-
-It must be non-tooltip that closes children windows.
-
-Bug: 1028046
-Change-Id: I9b5212873cb2c1a4179a28e915edd5fe84b29c5e
-Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1954483
-Reviewed-by: Michael Spang <spang@chromium.org>
-Commit-Queue: Maksim Sisov <msisov@igalia.com>
-Cr-Commit-Position: refs/heads/master@{#722560}
----
- ui/ozone/platform/wayland/host/wayland_window.cc | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/ui/ozone/platform/wayland/host/wayland_window.cc b/ui/ozone/platform/wayland/host/wayland_window.cc
-index 709fb681f7d9..1f8cc423d4aa 100644
---- a/ui/ozone/platform/wayland/host/wayland_window.cc
-+++ b/ui/ozone/platform/wayland/host/wayland_window.cc
-@@ -247,7 +247,7 @@ void WaylandWindow::Show(bool inactive) {
- }
-
- void WaylandWindow::Hide() {
-- if (!is_tooltip_) {
-+ if (is_tooltip_) {
- tooltip_subsurface_.reset();
- } else {
- if (child_window_)
---
-2.24.1
-