correctly remove client borders when mapping a window with NW gravity

This commit is contained in:
Dana Jansens 2002-12-24 08:28:03 +00:00
parent 5f78b51429
commit fdd5338fc1

View file

@ -674,8 +674,6 @@ void OBClient::toggleClientBorder(bool addborder)
case NorthWestGravity:
case WestGravity:
case SouthWestGravity:
if (addborder) x += _border_width;
else x -= _border_width;
break;
case NorthEastGravity:
case EastGravity:
@ -688,8 +686,6 @@ void OBClient::toggleClientBorder(bool addborder)
case NorthWestGravity:
case NorthGravity:
case NorthEastGravity:
if (addborder) y += _border_width;
else y -= _border_width;
break;
case SouthWestGravity:
case SouthGravity: