[PE] Fix tip for guide position
This commit is contained in:
parent
291c29706e
commit
b9d8d1ee8a
|
@ -2151,7 +2151,7 @@ define([
|
||||||
|
|
||||||
onTrackGuide: function(dPos, x, y) {
|
onTrackGuide: function(dPos, x, y) {
|
||||||
var tip = this.guideTip;
|
var tip = this.guideTip;
|
||||||
if (dPos === undefined) {
|
if (dPos === undefined || x<0 || y<0) {
|
||||||
if (!tip.isHidden && tip.ref) {
|
if (!tip.isHidden && tip.ref) {
|
||||||
tip.ref.hide();
|
tip.ref.hide();
|
||||||
tip.ref = undefined;
|
tip.ref = undefined;
|
||||||
|
@ -2183,7 +2183,7 @@ define([
|
||||||
|
|
||||||
tip.ref.show([-10000, -10000]);
|
tip.ref.show([-10000, -10000]);
|
||||||
tip.isHidden = false;
|
tip.isHidden = false;
|
||||||
|
}
|
||||||
var showPoint = [x, y];
|
var showPoint = [x, y];
|
||||||
showPoint[0] += (this._XY[0] + 6);
|
showPoint[0] += (this._XY[0] + 6);
|
||||||
showPoint[1] += (this._XY[1] - 20 - tip.ttHeight);
|
showPoint[1] += (this._XY[1] - 20 - tip.ttHeight);
|
||||||
|
@ -2197,7 +2197,6 @@ define([
|
||||||
left: showPoint[0] + 'px'
|
left: showPoint[0] + 'px'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
|
||||||
},
|
},
|
||||||
|
|
||||||
SetDisabled: function(state) {
|
SetDisabled: function(state) {
|
||||||
|
|
Loading…
Reference in a new issue