Output more debug-friendly messages for the "autohide" feature

This commit is contained in:
YUKI Hiroshi 2014-12-01 23:25:48 +09:00
parent 02426e5bc0
commit 1cf6887ff7

View File

@ -378,6 +378,20 @@ AutoHideBrowser.prototype = inherit(TreeStyleTabConstants, {
showHideOnMouseMove : function AHB_showHideOnMouseMove(aCoordinates) showHideOnMouseMove : function AHB_showHideOnMouseMove(aCoordinates)
{ {
var position = this.getMousePosition(aCoordinates); var position = this.getMousePosition(aCoordinates);
if (DEBUG) {
let humanReadablePosition = [];
if (position & this.MOUSE_POSITION_OUTSIDE)
humanReadablePosition.push('outside');
if (position & this.MOUSE_POSITION_INSIDE)
humanReadablePosition.push('inside');
if (position & this.MOUSE_POSITION_NEAR)
humanReadablePosition.push('near');
if (position & this.MOUSE_POSITION_SENSITIVE)
humanReadablePosition.push('sensitive');
dump('showHideOnMouseMove: ' +
'('+aCoordinates.screenX + ', ' + aCoordinates.screenY + ') => ' +
humanReadablePosition.join(', ') + '\n');
}
if (position == this.MOUSE_POSITION_UNKNOWN) if (position == this.MOUSE_POSITION_UNKNOWN)
return; return;