aboutsummaryrefslogtreecommitdiff
path: root/sway
diff options
context:
space:
mode:
Diffstat (limited to 'sway')
-rw-r--r--sway/tree/view.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/sway/tree/view.c b/sway/tree/view.c
index ac314795..2353feff 100644
--- a/sway/tree/view.c
+++ b/sway/tree/view.c
@@ -625,7 +625,12 @@ static void handle_foreign_activate_request(
struct sway_seat *seat;
wl_list_for_each(seat, &server.input->seats, link) {
if (seat->wlr_seat == event->seat) {
+ if (container_is_scratchpad_hidden_or_child(view->container)) {
+ root_scratchpad_show(view->container);
+ }
seat_set_focus_container(seat, view->container);
+ seat_consider_warp_to_focus(seat);
+ container_raise_floating(view->container);
break;
}
}