borders_to_hide doesn't need to be initialized
This commit is contained in:
parent
4219eb213b
commit
966915cfb2
4
src/x.c
4
src/x.c
|
@ -504,9 +504,7 @@ void x_draw_decoration(Con *con) {
|
||||||
/* 3: draw a rectangle in border color around the client */
|
/* 3: draw a rectangle in border color around the client */
|
||||||
if (p->border_style != BS_NONE && p->con_is_leaf) {
|
if (p->border_style != BS_NONE && p->con_is_leaf) {
|
||||||
/* We might hide some borders adjacent to the screen-edge */
|
/* We might hide some borders adjacent to the screen-edge */
|
||||||
adjacent_t borders_to_hide = ADJ_NONE;
|
adjacent_t borders_to_hide = con_adjacent_borders(con) & config.hide_edge_borders;
|
||||||
borders_to_hide = con_adjacent_borders(con) & config.hide_edge_borders;
|
|
||||||
|
|
||||||
Rect br = con_border_style_rect(con);
|
Rect br = con_border_style_rect(con);
|
||||||
|
|
||||||
/* These rectangles represent the border around the child window
|
/* These rectangles represent the border around the child window
|
||||||
|
|
Loading…
Reference in New Issue