aboutsummaryrefslogtreecommitdiff
path: root/sway/tree/root.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/tree/root.c')
-rw-r--r--sway/tree/root.c27
1 files changed, 19 insertions, 8 deletions
diff --git a/sway/tree/root.c b/sway/tree/root.c
index 95129a88..233358d2 100644
--- a/sway/tree/root.c
+++ b/sway/tree/root.c
@@ -56,6 +56,16 @@ void root_destroy(struct sway_root *root) {
free(root);
}
+static void set_container_transform(struct sway_workspace *ws,
+ struct sway_container *con) {
+ struct sway_output *output = ws->output;
+ struct wlr_box box = {0};
+ if (output) {
+ output_get_box(output, &box);
+ }
+ con->transform = box;
+}
+
void root_scratchpad_add_container(struct sway_container *con, struct sway_workspace *ws) {
if (!sway_assert(!con->scratchpad, "Container is already in scratchpad")) {
return;
@@ -64,6 +74,8 @@ void root_scratchpad_add_container(struct sway_container *con, struct sway_works
struct sway_container *parent = con->pending.parent;
struct sway_workspace *workspace = con->pending.workspace;
+ set_container_transform(workspace, con);
+
// Clear the fullscreen mode when sending to the scratchpad
if (con->pending.fullscreen_mode != FULLSCREEN_NONE) {
container_fullscreen_disable(con);
@@ -142,15 +154,12 @@ void root_scratchpad_show(struct sway_container *con) {
}
workspace_add_floating(new_ws, con);
- // Make sure the container's center point overlaps this workspace
- double center_lx = con->pending.x + con->pending.width / 2;
- double center_ly = con->pending.y + con->pending.height / 2;
-
- struct wlr_box workspace_box;
- workspace_get_box(new_ws, &workspace_box);
- if (!wlr_box_contains_point(&workspace_box, center_lx, center_ly)) {
- container_floating_resize_and_center(con);
+ if (new_ws->output) {
+ struct wlr_box output_box;
+ output_get_box(new_ws->output, &output_box);
+ floating_fix_coordinates(con, &con->transform, &output_box);
}
+ set_container_transform(new_ws, con);
arrange_workspace(new_ws);
seat_set_focus(seat, seat_get_focus_inactive(seat, &con->node));
@@ -173,6 +182,8 @@ void root_scratchpad_hide(struct sway_container *con) {
return;
}
+ set_container_transform(con->pending.workspace, con);
+
disable_fullscreen(con, NULL);
container_for_each_child(con, disable_fullscreen, NULL);
container_detach(con);