all repos — openbox @ 914d18f364e3e80dde9687f902a706a64363bc28

openbox fork - make it a bit more like ryudo

fix formatting
Dana Jansens danakj@orodu.net
commit

914d18f364e3e80dde9687f902a706a64363bc28

parent

01a7a9edb7617f3e0ae09a84207faa0dcdf71306

1 files changed, 8 insertions(+), 4 deletions(-)

jump to
M openbox/frame.copenbox/frame.c

@@ -1343,7 +1343,8 @@ case NorthEastGravity:

case SouthEastGravity: case EastGravity: /* the right side of the client will be the right side of the frame */ - *x -= self->size.right + self->size.left - self->client->border_width*2; + *x -= self->size.right + self->size.left - + self->client->border_width * 2; break; case ForgetGravity:

@@ -1372,7 +1373,8 @@ case SouthWestGravity:

case SouthEastGravity: case SouthGravity: /* the bottom of the client will be the bottom of the frame */ - *y -= self->size.bottom + self->size.top - self->client->border_width*2; + *y -= self->size.bottom + self->size.top - + self->client->border_width * 2; break; case ForgetGravity:

@@ -1402,7 +1404,8 @@ case NorthEastGravity:

case EastGravity: case SouthEastGravity: /* the right side of the client will be the right side of the frame */ - *x += self->size.right + self->size.left - self->client->border_width*2; + *x += self->size.right + self->size.left - + self->client->border_width * 2; break; case StaticGravity: case ForgetGravity:

@@ -1428,7 +1431,8 @@ case SouthWestGravity:

case SouthGravity: case SouthEastGravity: /* the bottom of the client will be the bottom of the frame */ - *y += self->size.bottom + self->size.top - self->client->border_width*2; + *y += self->size.bottom + self->size.top - + self->client->border_width * 2; break; case StaticGravity: case ForgetGravity: