Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
Diffstat (limited to 'shell')
-rw-r--r--shell/WindowManager.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/shell/WindowManager.py b/shell/WindowManager.py
index 9856768..af39324 100644
--- a/shell/WindowManager.py
+++ b/shell/WindowManager.py
@@ -47,7 +47,9 @@ class SlidingHelper:
self._cur_time = time.time()
remaining = self._target_time - self._cur_time
- if remaining <= 0:
+ if remaining <= 0 or \
+ (y > self._target_y and self._direction == SlidingHelper.IN) or \
+ (y < self._target_y and self._direction == SlidingHelper.OUT):
self._end = True
y = self._orig_y
else: