aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2018-05-16 11:39:43 +0100
committerFurkan Sahin <furkan-dev@proton.me>2018-05-16 11:39:43 +0100
commitf7e1d433b0efca7bd6345c092a52b26f4dc7bb28 (patch)
tree11af860046e84f5015676312f5a45a20739baf40
parent9f40b7bf48fe4602b7d59e7d494caffbaadbb4bf (diff)
parent98fc8f797794f0161fb5f118165d9c18508cddfe (diff)
Merge pull request #1994 from RyanDwyer/fix-focus-stealing
Don't steal focus when a view changes its title
-rw-r--r--sway/tree/view.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sway/tree/view.c b/sway/tree/view.c
index ec7f3031..833345c5 100644
--- a/sway/tree/view.c
+++ b/sway/tree/view.c
@@ -365,8 +365,7 @@ void view_execute_criteria(struct sway_view *view) {
return;
}
struct sway_seat *seat = input_manager_current_seat(input_manager);
- struct sway_container *prior_workspace =
- container_parent(view->swayc, C_WORKSPACE);
+ struct sway_container *prior_focus = seat_get_focus(seat);
list_t *criterias = criteria_for_view(view, CT_COMMAND);
for (int i = 0; i < criterias->length; i++) {
struct criteria *criteria = criterias->items[i];
@@ -388,7 +387,7 @@ void view_execute_criteria(struct sway_view *view) {
seat_set_focus(seat, view->swayc);
}
list_free(criterias);
- seat_set_focus(seat, seat_get_focus_inactive(seat, prior_workspace));
+ seat_set_focus(seat, prior_focus);
}
void view_map(struct sway_view *view, struct wlr_surface *wlr_surface) {