Improvements in the 0.90.0 code make these patches irrelevant.

This commit is contained in:
Doug Barton 2004-10-24 10:56:09 +00:00
parent 9d3fe74e52
commit 18c8580b99
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=120067
2 changed files with 0 additions and 30 deletions

View File

@ -1,11 +0,0 @@
--- src/event.c.orig Tue Jan 8 22:45:13 2002
+++ src/event.c Thu Jan 22 01:46:24 2004
@@ -402,8 +402,6 @@ handleDeadProcess(void *foo)
static void
saveTimestamp(XEvent *event)
{
- LastTimestamp = CurrentTime;
-
switch (event->type) {
case ButtonRelease:
case ButtonPress:

View File

@ -1,19 +0,0 @@
--- src/workspace.c.orig Tue Jan 8 22:45:33 2002
+++ src/workspace.c Thu Jan 22 01:47:49 2004
@@ -574,10 +574,12 @@ wWorkspaceForceChange(WScreen *scr, int
&foo, &foo, &foo, &foo, &mask)) {
tmp = wWindowFor(win);
}
- if (!tmp && wPreferences.focus_mode == WKF_SLOPPY) {
- wSetFocusTo(scr, foc);
- } else {
- wSetFocusTo(scr, tmp);
+ if (!tmp) {
+ if (wPreferences.focus_mode == WKF_SLOPPY) {
+ wSetFocusTo(scr, foc);
+ } else {
+ wSetFocusTo(scr, tmp);
+ }
}
}
}