diff options
author | Scott Murray <scott.murray@konsulko.com> | 2024-06-25 15:37:58 -0400 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2024-06-25 15:37:58 -0400 |
commit | 1e0aba7a5d676ff11a6e2eda1f412172b842dc0e (patch) | |
tree | f84215a76f0f0ec40e9dae197c869239547bb0ec /meta-agl-flutter/recipes-graphics/toyota/files/0002-activation_area-Allow-x-and-y-values-be-zero-for-the.patch | |
parent | 97310e350b19bc5e8cc391aba8394912eea19b4f (diff) |
Remove meta-agl-flutter
Remove the meta-agl-flutter layer and its configuration template,
as it is being moved to meta-agl.
Bug-AGL: SPEC-5184
Change-Id: I59e9f8616a21d2e3b97da47baef1892c904d0002
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Diffstat (limited to 'meta-agl-flutter/recipes-graphics/toyota/files/0002-activation_area-Allow-x-and-y-values-be-zero-for-the.patch')
-rw-r--r-- | meta-agl-flutter/recipes-graphics/toyota/files/0002-activation_area-Allow-x-and-y-values-be-zero-for-the.patch | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/meta-agl-flutter/recipes-graphics/toyota/files/0002-activation_area-Allow-x-and-y-values-be-zero-for-the.patch b/meta-agl-flutter/recipes-graphics/toyota/files/0002-activation_area-Allow-x-and-y-values-be-zero-for-the.patch deleted file mode 100644 index f0cf9ddb..00000000 --- a/meta-agl-flutter/recipes-graphics/toyota/files/0002-activation_area-Allow-x-and-y-values-be-zero-for-the.patch +++ /dev/null @@ -1,28 +0,0 @@ -From 641ca7ca26c1bfc11e7d0c0f30b731f53467bf1f Mon Sep 17 00:00:00 2001 -From: Marius Vlad <marius.vlad@collabora.com> -Date: Thu, 28 Dec 2023 20:28:12 +0200 -Subject: [PATCH 2/2] activation_area: Allow x and y values be zero for the - activation area - -Bug-AGL: SPEC-5038 -Signed-off-by: Marius Vlad <marius.vlad@collabora.com> ---- - shell/wayland/window.cc | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/shell/wayland/window.cc b/shell/wayland/window.cc -index f816e58..929b9af 100644 ---- a/shell/wayland/window.cc -+++ b/shell/wayland/window.cc -@@ -100,7 +100,7 @@ WaylandWindow::WaylandWindow(size_t index, - break; - case WINDOW_BG: - m_display->AglShellDoBackground(m_base_surface, 0); -- if (m_activation_area.x > 0 && m_activation_area.y > 0) -+ if (m_activation_area.x >= 0 && m_activation_area.y >= 0) - m_display->AglShellDoSetupActivationArea( - m_activation_area.x, m_activation_area.y, m_activation_area.width, - m_activation_area.height, 0); --- -2.35.1 - |