indenting
This commit is contained in:
parent
1be38a0418
commit
c8678108eb
1 changed files with 239 additions and 235 deletions
|
@ -3024,7 +3024,8 @@ int client_directional_edge_search(ObClient *c, ObDirection dir)
|
|||
my_edge_end = c->frame->area.x + c->frame->area.width;
|
||||
my_offset = c->frame->area.y;
|
||||
|
||||
dest = a->y; /* default: top of screen */
|
||||
/* default: top of screen */
|
||||
dest = a->y;
|
||||
|
||||
for(it = g_list_first(client_list); it; it = it->next) {
|
||||
int his_edge_start, his_edge_end, his_offset;
|
||||
|
@ -3064,7 +3065,8 @@ int client_directional_edge_search(ObClient *c, ObDirection dir)
|
|||
my_edge_end = c->frame->area.x + c->frame->area.width;
|
||||
my_offset = c->frame->area.y + c->frame->area.height;
|
||||
|
||||
dest = a->y + a->height; /* default: bottom of screen */
|
||||
/* default: bottom of screen */
|
||||
dest = a->y + a->height;
|
||||
|
||||
for(it = g_list_first(client_list); it; it = it->next) {
|
||||
int his_edge_start, his_edge_end, his_offset;
|
||||
|
@ -3105,7 +3107,8 @@ int client_directional_edge_search(ObClient *c, ObDirection dir)
|
|||
my_edge_end = c->frame->area.y + c->frame->area.height;
|
||||
my_offset = c->frame->area.x;
|
||||
|
||||
dest = a->x; /* default: leftmost egde of screen */
|
||||
/* default: leftmost egde of screen */
|
||||
dest = a->x;
|
||||
|
||||
for(it = g_list_first(client_list); it; it = it->next) {
|
||||
int his_edge_start, his_edge_end, his_offset;
|
||||
|
@ -3146,7 +3149,8 @@ int client_directional_edge_search(ObClient *c, ObDirection dir)
|
|||
my_edge_end = c->frame->area.y + c->frame->area.height;
|
||||
my_offset = c->frame->area.x + c->frame->area.width;
|
||||
|
||||
dest = a->x + a->width; /* default: rightmost edge of screen */
|
||||
/* default: rightmost edge of screen */
|
||||
dest = a->x + a->width;
|
||||
|
||||
for(it = g_list_first(client_list); it; it = it->next) {
|
||||
int his_edge_start, his_edge_end, his_offset;
|
||||
|
|
Loading…
Reference in a new issue