container: Add container_is_current_floating

Needed to check if containers are currently floating from render code,
as container_is_floating checks pending state.
This commit is contained in:
Kenny Levinsen 2021-02-22 19:33:08 +01:00 committed by Simon Ser
parent e0a94bee8d
commit 2c917a8c34
3 changed files with 20 additions and 2 deletions

View file

@ -858,6 +858,17 @@ bool container_is_floating(struct sway_container *container) {
return false;
}
bool container_is_current_floating(struct sway_container *container) {
if (!container->current.parent && container->current.workspace &&
list_find(container->current.workspace->floating, container) != -1) {
return true;
}
if (container->scratchpad) {
return true;
}
return false;
}
void container_get_box(struct sway_container *container, struct wlr_box *box) {
box->x = container->pending.x;
box->y = container->pending.y;