diff options
author | Victor Kareh <[email protected]> | 2019-05-22 11:48:21 -0400 |
---|---|---|
committer | Victor Kareh <[email protected]> | 2019-06-05 10:49:37 -0400 |
commit | a6a4de7a32bb0bdc2d06597dd92d6e389039f7d1 (patch) | |
tree | d27dfc32674806a6abb0057f7a042ccbcc96038c /src | |
parent | cec4e1a609e4d90341ff7e1a3d3e3580a333433a (diff) | |
download | marco-a6a4de7a32bb0bdc2d06597dd92d6e389039f7d1.tar.bz2 marco-a6a4de7a32bb0bdc2d06597dd92d6e389039f7d1.tar.xz |
theme: add invisible_border to metacity theme
This adds 'invisible_border' to be used for resize cursor area.
Diffstat (limited to 'src')
-rw-r--r-- | src/ui/theme.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ui/theme.c b/src/ui/theme.c index 0c595fe4..66cd4be8 100644 --- a/src/ui/theme.c +++ b/src/ui/theme.c @@ -219,6 +219,11 @@ 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; |