diff options
author | dougb <dougb@FreeBSD.org> | 2004-10-24 10:57:54 +0000 |
---|---|---|
committer | dougb <dougb@FreeBSD.org> | 2004-10-24 10:57:54 +0000 |
commit | 6ce79addb6c4aeb865d859da59ecc55c7c58b80b (patch) | |
tree | 7cf9e6be4a923815a882045775a436c46cbd8bdd /x11-wm | |
parent | d191d88c3e9cd64f24b682dbd76049d36bf90284 (diff) | |
download | FreeBSD-ports-6ce79addb6c4aeb865d859da59ecc55c7c58b80b.zip FreeBSD-ports-6ce79addb6c4aeb865d859da59ecc55c7c58b80b.tar.gz |
This patch does not seem to be necessary in 0.90.0.
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/windowmaker/files/patch-src::actions.c | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/x11-wm/windowmaker/files/patch-src::actions.c b/x11-wm/windowmaker/files/patch-src::actions.c deleted file mode 100644 index 3636b60..0000000 --- a/x11-wm/windowmaker/files/patch-src::actions.c +++ /dev/null @@ -1,26 +0,0 @@ ---- src/actions.c.orig Tue Jul 2 09:30:25 2002 -+++ src/actions.c Thu Jan 22 01:45:57 2004 -@@ -144,14 +144,22 @@ wSetFocusTo(WScreen *scr, WWindow *wwin - old_scr=scr; - old_focused=old_scr->focused_window; - -+ /* -+ * Safeguard: make sure the timestamp is monotonically increasing -+ * (very unlikely that this will be needed, still a safeguard) -+ */ -+ if (timestamp <= LastFocusChange) -+ timestamp = LastFocusChange + 1; -+ -+ - LastFocusChange = timestamp; - - /* - * This is a hack, because XSetInputFocus() should have a proper - * timestamp instead of CurrentTime but it seems that some times - * clients will not receive focus properly that way. -+ */ - if (ignoreTimestamp) --*/ - timestamp = CurrentTime; - - if (old_focused) |