From de65967b62d46d6dd01352d5fb5104f88f30d88e Mon Sep 17 00:00:00 2001 From: Elijah Newren Date: Tue, 10 Jan 2006 04:39:53 +0000 Subject: [PATCH] Remove the timeout resistance at screen/xinerama edges for the whiners. 2006-01-09 Elijah Newren * src/edge-resistance.c (apply_edge_resistance): Remove the timeout resistance at screen/xinerama edges for the whiners. Okay, it made sense. Fixes another of the zillions of issues covered in #321905. --- ChangeLog | 7 +++++++ src/edge-resistance.c | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index c04ac7d16..29620c0ea 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-01-09 Elijah Newren + + * src/edge-resistance.c (apply_edge_resistance): Remove the + timeout resistance at screen/xinerama edges for the whiners. + Okay, it made sense. Fixes another of the zillions of issues + covered in #321905. + 2006-01-09 Elijah Newren * src/edge-resistance.c (apply_edge_resistance): Make extra diff --git a/src/edge-resistance.c b/src/edge-resistance.c index 443b8cba7..ae1add06b 100644 --- a/src/edge-resistance.c +++ b/src/edge-resistance.c @@ -341,8 +341,8 @@ apply_edge_resistance (MetaWindow *window, const int PIXEL_DISTANCE_THRESHOLD_TOWARDS_SCREEN = 32; const int PIXEL_DISTANCE_THRESHOLD_AWAYFROM_SCREEN = 8; const int TIMEOUT_RESISTANCE_LENGTH_MS_WINDOW = 0; - const int TIMEOUT_RESISTANCE_LENGTH_MS_XINERAMA = 100; - const int TIMEOUT_RESISTANCE_LENGTH_MS_SCREEN = 750; + const int TIMEOUT_RESISTANCE_LENGTH_MS_XINERAMA = 0; + const int TIMEOUT_RESISTANCE_LENGTH_MS_SCREEN = 0; const int KEYBOARD_BUILDUP_THRESHOLD_TOWARDS_WINDOW = 16; const int KEYBOARD_BUILDUP_THRESHOLD_AWAYFROM_WINDOW = 16; const int KEYBOARD_BUILDUP_THRESHOLD_TOWARDS_XINERAMA = 24;