Skip to content
Snippets Groups Projects
Commit 4dea0071 authored by jojohoch's avatar jojohoch
Browse files

[player] Prevent scrollbar while using magnifier

When the magnifier was moved to the right of an image, there was a
possibility that a scroll bar would flare up, depending on the size
of the image. By subtracting the frame width of the magnifier the error
is fixed.
parent f2ea3888
No related branches found
No related tags found
No related merge requests found
......@@ -43,8 +43,8 @@ export class Magnifier {
this.used = true;
this.elementValueChanged.emit({ id: this.imageId, values: [false, true] });
}
this.left = this.calculateGlassPosition(this.image.width, event.offsetX) - 1;
this.top = this.calculateGlassPosition(this.image.height, event.offsetY) - 1;
this.left = this.calculateGlassPosition(this.image.width, event.offsetX) - 2;
this.top = this.calculateGlassPosition(this.image.height, event.offsetY) - 2;
this.backgroundPosition =
`-${
this.calculateBackgroundPosition(this.image.width, event.offsetX)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment