diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-07-19 14:09:19 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-19 14:09:19 -0700 |
commit | 3483f1ea1ac66f261452f4cb4fea5f6b342b41d1 (patch) | |
tree | a81ef9a4d873de4a886ee414872b496838a61160 /sway/tree | |
parent | 4154234eee1fa86f3a01d2f47b4fa632dcd73644 (diff) | |
parent | da9c86c608b33d78e25ced5858be579f502efd63 (diff) | |
download | sway-3483f1ea1ac66f261452f4cb4fea5f6b342b41d1.tar.xz |
Merge branch 'master' into update-wlroots-1148
Diffstat (limited to 'sway/tree')
-rw-r--r-- | sway/tree/view.c | 6 |
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) { } focus = seat_get_focus_inactive(seat, workspace); } else { - // TODO: CT_ASSIGN_OUTPUT + // CT_ASSIGN_OUTPUT + struct sway_container *output = output_by_name(criteria->target); + if (output) { + focus = seat_get_focus_inactive(seat, output); + } } } // If we're about to launch the view into the floating container, then |