diff options
author | Victor Kareh <[email protected]> | 2019-05-21 13:15:48 -0400 |
---|---|---|
committer | Victor Kareh <[email protected]> | 2019-06-05 10:49:37 -0400 |
commit | d05c1f4677ab3dda3ad2b5964a554aec8611fdcc (patch) | |
tree | 0b78189c3d7b2ca6d01945f62d409fa4ab06ec0d /src/ui/theme.c | |
parent | c66b32666e48996b97e691ed002f86b6ff18dec5 (diff) | |
download | marco-d05c1f4677ab3dda3ad2b5964a554aec8611fdcc.tar.bz2 marco-d05c1f4677ab3dda3ad2b5964a554aec8611fdcc.tar.xz |
MetaFrameBorders: Add meta_frame_borders_clear
Just a quick little commit to help clean things up for when we add invisible
borders. Additionally, do a little housekeeping in preview-widget as well.
https://bugzilla.gnome.org/show_bug.cgi?id=644930
NOTE: Patch copied from metacity and adapted for marco.
upstream commit:
https://gitlab.gnome.org/GNOME/metacity/commit/7d519b3f
Diffstat (limited to 'src/ui/theme.c')
-rw-r--r-- | src/ui/theme.c | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/src/ui/theme.c b/src/ui/theme.c index 37298e42..299f1cc2 100644 --- a/src/ui/theme.c +++ b/src/ui/theme.c @@ -219,11 +219,6 @@ meta_frame_layout_new (void) layout->right_width = -1; layout->bottom_height = -1; - layout->invisible_border.left = 10; - layout->invisible_border.right = 10; - layout->invisible_border.bottom = 10; - layout->invisible_border.top = 10; - init_border (&layout->title_border); layout->title_vertical_pad = -1; @@ -430,10 +425,8 @@ meta_frame_layout_get_borders (const MetaFrameLayout *layout, if (flags & META_FRAME_FULLSCREEN) { - borders->visible.top = 0; - borders->visible.bottom = 0; - borders->visible.left = 0; - borders->visible.right = 0; + meta_frame_borders_clear (borders); + return; } } @@ -5656,10 +5649,7 @@ meta_theme_get_frame_borders (MetaTheme *theme, style = theme_get_style (theme, type, flags); - borders->visible.top = 0; - borders->visible.left = 0; - borders->visible.right = 0; - borders->visible.bottom = 0; + meta_frame_borders_clear (borders); /* Parser is not supposed to allow this currently */ if (style == NULL) |