mirror of
https://github.com/swaywm/sway.git
synced 2024-11-23 00:11:28 +00:00
Remove duplicate function declaration and add assertion
This commit is contained in:
parent
ab8a86369c
commit
b0fc7e9850
|
@ -97,6 +97,4 @@ void output_drag_icons_for_each_surface(struct wl_list *drag_icons,
|
||||||
struct sway_output *output, struct root_geometry *geo,
|
struct sway_output *output, struct root_geometry *geo,
|
||||||
wlr_surface_iterator_func_t iterator, void *user_data);
|
wlr_surface_iterator_func_t iterator, void *user_data);
|
||||||
|
|
||||||
struct sway_container *output_get_active_workspace(struct sway_output *output);
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -1052,6 +1052,10 @@ static struct sway_container *container_floating_find_output(
|
||||||
|
|
||||||
void container_floating_move_to(struct sway_container *con,
|
void container_floating_move_to(struct sway_container *con,
|
||||||
double lx, double ly) {
|
double lx, double ly) {
|
||||||
|
if (!sway_assert(container_is_floating(con),
|
||||||
|
"Expected a floating container")) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
desktop_damage_whole_container(con);
|
desktop_damage_whole_container(con);
|
||||||
container_floating_translate(con, lx - con->x, ly - con->y);
|
container_floating_translate(con, lx - con->x, ly - con->y);
|
||||||
desktop_damage_whole_container(con);
|
desktop_damage_whole_container(con);
|
||||||
|
|
Loading…
Reference in a new issue