diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/border.h | 6 | ||||
-rw-r--r-- | include/focus.h | 1 |
2 files changed, 5 insertions, 2 deletions
diff --git a/include/border.h b/include/border.h index b629ba46..b72dc5dc 100644 --- a/include/border.h +++ b/include/border.h @@ -16,8 +16,12 @@ struct border { */ void border_clear(struct border *border); +/** + * Recursively update all of the borders within a container. + */ +void update_container_border(swayc_t *container); + void render_view_borders(wlc_handle view); -void update_view_border(swayc_t *view); void map_update_view_border(swayc_t *view, void *data); int get_font_text_height(const char *font); bool should_hide_top_border(swayc_t *con, double y); diff --git a/include/focus.h b/include/focus.h index 236d050b..b532edc2 100644 --- a/include/focus.h +++ b/include/focus.h @@ -33,7 +33,6 @@ bool set_focused_container_for(swayc_t *ancestor, swayc_t *container); // and unlocked when they are destroyed extern bool locked_container_focus; -extern bool locked_view_focus; // Prevents wss from being destroyed on focus switch extern bool suspend_workspace_cleanup; |