summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominique Martinet <[email protected]>2018-06-26 11:59:06 +0900
committerDominique Martinet <[email protected]>2018-06-26 12:02:50 +0900
commitc9be0145576433e71f8b7732f7ff5ddee0d36076 (patch)
tree8636e5de53e26f990b3c9d8bebea993446aaeb36
parent59086fabbfaa545641827b0e181100027de08205 (diff)
xdg_shell: make view floating if a parent has been set
Prompts e.g. authentication request from firefox-wayland ought to be floating. This is a bit coarse but just fixed size is not enough, here is what firefox does: [1285461.363] -> [email protected]_xdg_surface(new id xdg_surface@68, wl_surface@71) [1285461.508] -> [email protected]_toplevel(new id xdg_toplevel@67) [1285461.571] -> [email protected]_parent(xdg_toplevel@37) [1285461.630] -> [email protected]_title("Authentication Required") [1285461.736] -> [email protected]_app_id("firefox") ... [1285476.549] [email protected](0, 0, array) ... [1285502.080] -> [email protected]_min_size(299, 187) [1285502.140] -> [email protected]_max_size(1920, 32767) This can also be observed with e.g. the open window of gedit (gedit->open->other documents)
-rw-r--r--sway/desktop/xdg_shell.c9
-rw-r--r--sway/desktop/xdg_shell_v6.c10
2 files changed, 11 insertions, 8 deletions
diff --git a/sway/desktop/xdg_shell.c b/sway/desktop/xdg_shell.c
index d2b8822c..8457c06b 100644
--- a/sway/desktop/xdg_shell.c
+++ b/sway/desktop/xdg_shell.c
@@ -120,11 +120,12 @@ static void set_fullscreen(struct sway_view *view, bool fullscreen) {
}
static bool wants_floating(struct sway_view *view) {
- struct wlr_xdg_toplevel_state *state =
- &view->wlr_xdg_surface->toplevel->current;
- return state->min_width != 0 && state->min_height != 0
+ struct wlr_xdg_toplevel *toplevel = view->wlr_xdg_surface->toplevel;
+ struct wlr_xdg_toplevel_state *state = &toplevel->current;
+ return (state->min_width != 0 && state->min_height != 0
&& state->min_width == state->max_width
- && state->min_height == state->max_height;
+ && state->min_height == state->max_height)
+ || toplevel->parent;
}
static void for_each_surface(struct sway_view *view,
diff --git a/sway/desktop/xdg_shell_v6.c b/sway/desktop/xdg_shell_v6.c
index 6ffe334a..eb1cef26 100644
--- a/sway/desktop/xdg_shell_v6.c
+++ b/sway/desktop/xdg_shell_v6.c
@@ -119,11 +119,13 @@ static void set_fullscreen(struct sway_view *view, bool fullscreen) {
}
static bool wants_floating(struct sway_view *view) {
- struct wlr_xdg_toplevel_v6_state *state =
- &view->wlr_xdg_surface_v6->toplevel->current;
- return state->min_width != 0 && state->min_height != 0
+ struct wlr_xdg_toplevel_v6 *toplevel =
+ view->wlr_xdg_surface_v6->toplevel;
+ struct wlr_xdg_toplevel_v6_state *state = &toplevel->current;
+ return (state->min_width != 0 && state->min_height != 0
&& state->min_width == state->max_width
- && state->min_height == state->max_height;
+ && state->min_height == state->max_height)
+ || toplevel->parent;
}
static void for_each_surface(struct sway_view *view,