mirror of
https://github.com/swaywm/sway.git
synced 2025-11-05 13:29:51 -05:00
Remove duplicate function declaration and add assertion
This commit is contained in:
parent
ab8a86369c
commit
b0fc7e9850
2 changed files with 4 additions and 2 deletions
|
|
@ -1052,6 +1052,10 @@ static struct sway_container *container_floating_find_output(
|
|||
|
||||
void container_floating_move_to(struct sway_container *con,
|
||||
double lx, double ly) {
|
||||
if (!sway_assert(container_is_floating(con),
|
||||
"Expected a floating container")) {
|
||||
return;
|
||||
}
|
||||
desktop_damage_whole_container(con);
|
||||
container_floating_translate(con, lx - con->x, ly - con->y);
|
||||
desktop_damage_whole_container(con);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue