commit d4ed204d4da742ccabae29db2c90a62d90244a90
parent 70f5d6fcf3219f122077b7e8d0b43a464f4e3fd4
Author: Ryan Dwyer <ryandwyer1@gmail.com>
Date: Sat, 26 May 2018 16:34:15 +1000
Remove container_self_or_parent_floating
Diffstat:
2 files changed, 0 insertions(+), 15 deletions(-)
diff --git a/include/sway/tree/container.h b/include/sway/tree/container.h
@@ -246,10 +246,4 @@ void container_set_geometry_from_floating_view(struct sway_container *con);
*/
bool container_is_floating(struct sway_container *container);
-/**
- * Determine if the given container is itself floating or is a child of a
- * floating container.
- */
-bool container_self_or_parent_floating(struct sway_container *container);
-
#endif
diff --git a/sway/tree/container.c b/sway/tree/container.c
@@ -949,15 +949,6 @@ void container_set_geometry_from_floating_view(struct sway_container *con) {
con->height = top + view->height + border_width;
}
-bool container_self_or_parent_floating(struct sway_container *container) {
- struct sway_container *workspace = container_parent(container, C_WORKSPACE);
- if (!workspace) {
- return false;
- }
- return container_has_anscestor(container,
- workspace->sway_workspace->floating);
-}
-
bool container_is_floating(struct sway_container *container) {
struct sway_container *workspace = container_parent(container, C_WORKSPACE);
if (!workspace) {