aboutsummaryrefslogtreecommitdiffstats
path: root/sway/tree
diff options
context:
space:
mode:
Diffstat (limited to 'sway/tree')
-rw-r--r--sway/tree/view.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/sway/tree/view.c b/sway/tree/view.c
index 5525bf63..4a0d8069 100644
--- a/sway/tree/view.c
+++ b/sway/tree/view.c
@@ -412,6 +412,12 @@ void view_request_activate(struct sway_view *view, struct sway_seat *seat) {
412 transaction_commit_dirty(); 412 transaction_commit_dirty();
413} 413}
414 414
415void view_request_urgent(struct sway_view *view) {
416 if (config->focus_on_window_activation != FOWA_NONE) {
417 view_set_urgent(view, true);
418 }
419}
420
415void view_set_csd_from_server(struct sway_view *view, bool enabled) { 421void view_set_csd_from_server(struct sway_view *view, bool enabled) {
416 sway_log(SWAY_DEBUG, "Telling view %p to set CSD to %i", view, enabled); 422 sway_log(SWAY_DEBUG, "Telling view %p to set CSD to %i", view, enabled);
417 if (view->xdg_decoration) { 423 if (view->xdg_decoration) {