MetaFrameBorders: Add invisible borders

This just adds the invisible border field and populates it with data
but doesn't use it in any way.

https://bugzilla.gnome.org/show_bug.cgi?id=644930
This commit is contained in:
Jasper St. Pierre
2011-07-12 00:55:50 -04:00
parent 6f5882302f
commit a1a2527c75
3 changed files with 27 additions and 5 deletions

View File

@ -304,10 +304,10 @@ meta_frame_get_flags (MetaFrame *frame)
void
meta_frame_borders_clear (MetaFrameBorders *self)
{
self->visible.top = 0;
self->visible.bottom = 0;
self->visible.left = 0;
self->visible.right = 0;
self->visible.top = self->invisible.top = self->total.top = 0;
self->visible.bottom = self->invisible.bottom = self->total.bottom = 0;
self->visible.left = self->invisible.left = self->total.left = 0;
self->visible.right = self->invisible.right = self->total.right = 0;
}
void