mirror of
https://git.freebsd.org/ports.git
synced 2025-06-24 06:00:30 -04:00
- Fix urgent signal for window manager [2] - Remove MD5 [2] PR: ports/152765 [1] ports/153348 [2] Submitted by: Mark Felder <feld@feld.me> [1] Renato Botelho <garga@FreeBSD.org> [2]
13 lines
298 B
C
13 lines
298 B
C
@@ -109,10 +109,8 @@
|
|
|
|
if (!(w->flags & WINDOW_BELL) || wl->flags & WINLINK_BELL)
|
|
return (0);
|
|
- if (s->curw == wl)
|
|
- return (0);
|
|
-
|
|
- wl->flags |= WINLINK_BELL;
|
|
+ if (s->curw != wl)
|
|
+ wl->flags |= WINLINK_BELL;
|
|
|
|
action = options_get_number(&s->options, "bell-action");
|
|
switch (action) {
|