summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorMartin Wimpress <[email protected]>2021-01-30 11:21:39 +0000
committerraveit65 <[email protected]>2021-06-04 17:30:50 +0200
commit4f567598327e9fdc50eec37ef286c62415a6677f (patch)
treeba5d95fb5ab620461969712deebde6d5a0faa98e /src/core
parent60e6fbfb093d63c46ca8e77750c54f31c9780c1c (diff)
downloadmarco-4f567598327e9fdc50eec37ef286c62415a6677f.tar.bz2
marco-4f567598327e9fdc50eec37ef286c62415a6677f.tar.xz
window: Do not render shadows on left/right tiled windows
This pull request prevents shadows being rendered for left and right side titled windows. This behaviour is consistent with maximised windows, which also do not render shadows. The rationale for this change is so that when two windows are titled along side each other, it prevents central shadows bleeding into the touching points of the windows. metacity-theme-x.xml has provision to style left/right titled windows. This patch makes it possible to to create window themes that present clean side-by-side tiled windows.
Diffstat (limited to 'src/core')
-rw-r--r--src/core/window.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/core/window.c b/src/core/window.c
index b301dbd9..add00789 100644
--- a/src/core/window.c
+++ b/src/core/window.c
@@ -8855,6 +8855,18 @@ meta_window_is_maximized (MetaWindow *window)
return META_WINDOW_MAXIMIZED (window);
}
+gboolean
+meta_window_is_tiled_left (MetaWindow *window)
+{
+ return META_WINDOW_TILED_LEFT (window);
+}
+
+gboolean
+meta_window_is_tiled_right (MetaWindow *window)
+{
+ return META_WINDOW_TILED_RIGHT (window);
+}
+
/**
* meta_window_is_client_decorated:
*