mirror of
https://github.com/swaywm/sway.git
synced 2024-11-11 04:54:14 +01:00
Use surface size if xdg shell's geometry isn't set
This commit is contained in:
parent
4371c746e4
commit
3b1db30a5e
@ -182,13 +182,18 @@ static void handle_commit(struct wl_listener *listener, void *data) {
|
|||||||
struct sway_xdg_shell_view *xdg_shell_view =
|
struct sway_xdg_shell_view *xdg_shell_view =
|
||||||
wl_container_of(listener, xdg_shell_view, commit);
|
wl_container_of(listener, xdg_shell_view, commit);
|
||||||
struct sway_view *view = &xdg_shell_view->view;
|
struct sway_view *view = &xdg_shell_view->view;
|
||||||
struct wlr_box *geometry = &view->wlr_xdg_surface->geometry;
|
int width = view->wlr_xdg_surface->geometry.width;
|
||||||
|
int height = view->wlr_xdg_surface->geometry.height;
|
||||||
|
if (!width && !height) {
|
||||||
|
width = view->wlr_xdg_surface->surface->current->width;
|
||||||
|
height = view->wlr_xdg_surface->surface->current->height;
|
||||||
|
}
|
||||||
if (!view->natural_width && !view->natural_height) {
|
if (!view->natural_width && !view->natural_height) {
|
||||||
view->natural_width = geometry->width;
|
view->natural_width = width;
|
||||||
view->natural_height = geometry->height;
|
view->natural_height = height;
|
||||||
}
|
}
|
||||||
if (view->swayc && container_is_floating(view->swayc)) {
|
if (view->swayc && container_is_floating(view->swayc)) {
|
||||||
view_update_size(view, geometry->width, geometry->height);
|
view_update_size(view, width, height);
|
||||||
} else {
|
} else {
|
||||||
view_update_size(view, xdg_shell_view->pending_width,
|
view_update_size(view, xdg_shell_view->pending_width,
|
||||||
xdg_shell_view->pending_height);
|
xdg_shell_view->pending_height);
|
||||||
|
@ -181,13 +181,18 @@ static void handle_commit(struct wl_listener *listener, void *data) {
|
|||||||
struct sway_xdg_shell_v6_view *xdg_shell_v6_view =
|
struct sway_xdg_shell_v6_view *xdg_shell_v6_view =
|
||||||
wl_container_of(listener, xdg_shell_v6_view, commit);
|
wl_container_of(listener, xdg_shell_v6_view, commit);
|
||||||
struct sway_view *view = &xdg_shell_v6_view->view;
|
struct sway_view *view = &xdg_shell_v6_view->view;
|
||||||
struct wlr_box *geometry = &view->wlr_xdg_surface_v6->geometry;
|
int width = view->wlr_xdg_surface_v6->geometry.width;
|
||||||
|
int height = view->wlr_xdg_surface_v6->geometry.height;
|
||||||
|
if (!width && !height) {
|
||||||
|
width = view->wlr_xdg_surface_v6->surface->current->width;
|
||||||
|
height = view->wlr_xdg_surface_v6->surface->current->height;
|
||||||
|
}
|
||||||
if (!view->natural_width && !view->natural_height) {
|
if (!view->natural_width && !view->natural_height) {
|
||||||
view->natural_width = geometry->width;
|
view->natural_width = width;
|
||||||
view->natural_height = geometry->height;
|
view->natural_height = height;
|
||||||
}
|
}
|
||||||
if (view->swayc && container_is_floating(view->swayc)) {
|
if (view->swayc && container_is_floating(view->swayc)) {
|
||||||
view_update_size(view, geometry->width, geometry->height);
|
view_update_size(view, width, height);
|
||||||
} else {
|
} else {
|
||||||
view_update_size(view, xdg_shell_v6_view->pending_width,
|
view_update_size(view, xdg_shell_v6_view->pending_width,
|
||||||
xdg_shell_v6_view->pending_height);
|
xdg_shell_v6_view->pending_height);
|
||||||
|
Loading…
Reference in New Issue
Block a user