mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 02:47:46 +03:00
xdg-activation: distinguish activation and urgency requests
Check if the app that requested a token has provided a valid input serial and a focused surface. Downgrade activation request to urgency otherwise. This is mostly in line with what other Wayland compositors decided to do, and offers a better security than the original logic.
This commit is contained in:
parent
f6d22f8e68
commit
d19810eba8
5 changed files with 18 additions and 1 deletions
|
@ -14,6 +14,7 @@ struct launcher_ctx {
|
|||
struct wl_listener seat_destroy;
|
||||
|
||||
bool activated;
|
||||
bool had_focused_surface;
|
||||
|
||||
struct sway_node *node;
|
||||
struct wl_listener node_destroy;
|
||||
|
|
|
@ -242,6 +242,11 @@ void view_set_activated(struct sway_view *view, bool activated);
|
|||
*/
|
||||
void view_request_activate(struct sway_view *view, struct sway_seat *seat);
|
||||
|
||||
/*
|
||||
* Called when the view requests urgent state
|
||||
*/
|
||||
void view_request_urgent(struct sway_view *view);
|
||||
|
||||
/**
|
||||
* If possible, instructs the client to change their decoration mode.
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue