aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-07-19 10:10:38 -0700
committerLibravatar GitHub <noreply@github.com>2018-07-19 10:10:38 -0700
commitda9c86c608b33d78e25ced5858be579f502efd63 (patch)
tree8f943d49be6312e1a6bcb17c24daacdddad94003
parentMerge pull request #2304 from RedSoxFan/fix-2298 (diff)
parentImplement assign to output (diff)
downloadsway-da9c86c608b33d78e25ced5858be579f502efd63.tar.gz
sway-da9c86c608b33d78e25ced5858be579f502efd63.tar.zst
sway-da9c86c608b33d78e25ced5858be579f502efd63.zip
Merge pull request #2310 from RyanDwyer/assign-output
Implement assign to output
-rw-r--r--sway/tree/view.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/sway/tree/view.c b/sway/tree/view.c
index fc31699c..7881e6d7 100644
--- a/sway/tree/view.c
+++ b/sway/tree/view.c
@@ -564,7 +564,11 @@ void view_map(struct sway_view *view, struct wlr_surface *wlr_surface) {
564 } 564 }
565 focus = seat_get_focus_inactive(seat, workspace); 565 focus = seat_get_focus_inactive(seat, workspace);
566 } else { 566 } else {
567 // TODO: CT_ASSIGN_OUTPUT 567 // CT_ASSIGN_OUTPUT
568 struct sway_container *output = output_by_name(criteria->target);
569 if (output) {
570 focus = seat_get_focus_inactive(seat, output);
571 }
568 } 572 }
569 } 573 }
570 // If we're about to launch the view into the floating container, then 574 // If we're about to launch the view into the floating container, then