aboutsummaryrefslogtreecommitdiff
path: root/sway/commands/sticky.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-08-25 09:38:33 -0400
committerGitHub <noreply@github.com>2018-08-25 09:38:33 -0400
commitb945957b9bf4508816438186d4ee59dd468160c8 (patch)
treef789e2f6156abbc7662625dffc8cb77b0a4c82d9 /sway/commands/sticky.c
parent33d102265098f76517be7a6032d4f828c6bd32f4 (diff)
parentf4bc25bcc6c822e264938447940b7d75fa84319b (diff)
downloadsway-b945957b9bf4508816438186d4ee59dd468160c8.tar.xz
Merge pull request #2510 from RyanDwyer/relocate-layout-functions
Relocate container_move, container_move_to and container_get_in_direction
Diffstat (limited to 'sway/commands/sticky.c')
-rw-r--r--sway/commands/sticky.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sway/commands/sticky.c b/sway/commands/sticky.c
index a0dd7215..72ef4282 100644
--- a/sway/commands/sticky.c
+++ b/sway/commands/sticky.c
@@ -8,6 +8,7 @@
#include "sway/tree/container.h"
#include "sway/tree/layout.h"
#include "sway/tree/view.h"
+#include "sway/tree/workspace.h"
#include "list.h"
struct cmd_results *cmd_sticky(int argc, char **argv) {
@@ -44,7 +45,9 @@ struct cmd_results *cmd_sticky(int argc, char **argv) {
struct sway_container *focused_workspace = container_parent(focus, C_WORKSPACE);
struct sway_container *current_workspace = container_parent(container, C_WORKSPACE);
if (current_workspace != focused_workspace) {
- container_move_to(container, focused_workspace);
+ container_remove_child(container);
+ workspace_add_floating(focused_workspace, container);
+ container_handle_fullscreen_reparent(container, current_workspace);
arrange_windows(focused_workspace);
if (!container_reap_empty(current_workspace)) {
arrange_windows(current_workspace);