From d2a40d6885a4a331e6b810c8632a25b510796dab Mon Sep 17 00:00:00 2001 From: Adel Gadllah Date: Tue, 25 Jan 2011 15:30:19 +0100 Subject: [PATCH] appSwitcher: Make sure we don't leave a stale timeout handler --- js/ui/altTab.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/ui/altTab.js b/js/ui/altTab.js index a8d3e79ea..85846cb66 100644 --- a/js/ui/altTab.js +++ b/js/ui/altTab.js @@ -946,6 +946,8 @@ AppSwitcher.prototype = { this._mouseTimeOutId = Mainloop.timeout_add(APP_ICON_HOVER_TIMEOUT, Lang.bind(this, function () { this._enterItem(index); + this._mouseTimeOutId = 0; + return false; })); } else this._itemEntered(index);