Skip to content

Commit

Permalink
#574 fix inconsistencies when mixing sticky and float properties
Browse files Browse the repository at this point in the history
  • Loading branch information
koekeishiya committed Jun 13, 2020
1 parent ee4ea0d commit 2107ae2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/window_manager.h
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ void window_manager_add_application_windows(struct space_manager *sm, struct win
enum window_op_error window_manager_apply_grid(struct space_manager *sm, struct window_manager *wm, struct window *window, unsigned r, unsigned c, unsigned x, unsigned y, unsigned w, unsigned h);
void window_manager_purify_window(struct window_manager *wm, struct window *window);
void window_manager_make_window_floating(struct space_manager *sm, struct window_manager *wm, struct window *window, bool should_float);
void window_manager_make_window_sticky(struct space_manager *sm, struct window_manager *wm, struct window *window, bool sticky);
void window_manager_make_window_topmost(struct window_manager *wm, struct window *window, bool floating);
void window_manager_make_window_sticky(struct space_manager *sm, struct window_manager *wm, struct window *window, bool should_sticky);
void window_manager_make_window_topmost(struct window_manager *wm, struct window *window, bool topmost);
void window_manager_set_sticky(uint32_t wid, bool sticky);
void window_manager_set_layer(uint32_t wid, int layer);
void window_manager_set_window_layer(struct window *window, int layer);
Expand Down

0 comments on commit 2107ae2

Please sign in to comment.