Changeset 653
- Timestamp:
- 2007-11-26 18:44:07 (1 year ago)
- Files:
-
- trunk/chrome/content/dta/manager/tree.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/chrome/content/dta/manager/tree.js
r647 r653 328 328 }, 329 329 _hoverItem: null, 330 _ww: Components.classes["@mozilla.org/embedcomp/window-watcher;1"] 331 .getService(Components.interfaces.nsIWindowWatcher), 330 332 hovering: function(event) { 331 if (!Prefs.showTooltip ) {333 if (!Prefs.showTooltip || this._ww.activeWindow != window) { 332 334 return; 333 335 } … … 335 337 }, 336 338 showTip: function(event) { 337 if (!Prefs.showTooltip || !this._hoverItem ) {339 if (!Prefs.showTooltip || !this._hoverItem || this._ww.activeWindow != window) { 338 340 return false; 339 341 }
