do not try to resize if size wouldn't change
This commit is contained in:
parent
6ca011430a
commit
be854cab35
3
client.h
3
client.h
|
@ -345,6 +345,9 @@ client_set_size(Client *c, uint32_t width, uint32_t height)
|
|||
return 0;
|
||||
}
|
||||
#endif
|
||||
if (width == c->surface.xdg->toplevel->current.width
|
||||
&& height ==c->surface.xdg->toplevel->current.height)
|
||||
return 0;
|
||||
return wlr_xdg_toplevel_set_size(c->surface.xdg->toplevel, width, height);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue