diff options
author | Drew DeVault <sir@cmpwn.com> | 2015-08-26 14:07:17 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2015-08-26 14:07:17 -0400 |
commit | 1e54490b71a7ccacb0d25dd1e2792125b9d71c06 (patch) | |
tree | 067204ac10ae5f727c9bed71de9ad007aa80e023 /include/container.h | |
parent | c4257055ebb74987b62833c0529ecfb9f9a1c47c (diff) | |
parent | 1fa7a91bfb4ccbd42a535787f3bb208913b4a7e9 (diff) | |
download | sway-1e54490b71a7ccacb0d25dd1e2792125b9d71c06.tar.xz |
Merge pull request #136 from taiyu-len/master
move_container_to fixup
Diffstat (limited to 'include/container.h')
-rw-r--r-- | include/container.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/container.h b/include/container.h index 798a31a2..6c0de104 100644 --- a/include/container.h +++ b/include/container.h @@ -101,6 +101,7 @@ swayc_t *swayc_active_workspace_for(swayc_t *view); // Container information bool swayc_is_fullscreen(swayc_t *view); +bool swayc_is_active(swayc_t *view); // Mapping functions @@ -110,7 +111,6 @@ void container_map(swayc_t *, void (*f)(swayc_t *, void *), void *); void set_view_visibility(swayc_t *view, void *data); void reset_gaps(swayc_t *view, void *data); - void update_visibility(swayc_t *container); #endif |