Skip to content

Commit a6afbee

Browse files
committed
Conflicts
1 parent 4c65e1f commit a6afbee

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

src/core/jpeg_stream.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ class JpegStream extends DecodeStream {
9494
}
9595
}
9696
const jpegImage = new JpegImage(jpegOptions);
97-
97+
9898
jpegImage.parse(bytes);
9999
const data = jpegImage.getData({
100100
width: this.drawWidth,

src/display/canvas.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -1515,7 +1515,7 @@ class CanvasGraphics {
15151515
ctx.fillRect(0, 0, width, height);
15161516
ctx.globalCompositeOperation = "source-over";
15171517
}
1518-
1518+
15191519
maskCanvas = canvas.canvas;
15201520
maskX = maskY = 0;
15211521
} else if (backdrop.some(c => c !== 0)) {
@@ -3248,5 +3248,3 @@ for (const op in OPS) {
32483248
CanvasGraphics.prototype[OPS[op]] = CanvasGraphics.prototype[op];
32493249
}
32503250
}
3251-
3252-
export { CanvasGraphics };

web/viewer.css

+5-4
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,8 @@ body {
515515

516516
.treeItemToggler::before {
517517
/* All matching images have a size of 16x16
518-
* All relevant containers have a size of 28x28 */
518+
* All relevant containers have a size of 28x28
519+
*/
519520
position: absolute;
520521
display: inline-block;
521522
width: 16px;
@@ -742,7 +743,7 @@ body {
742743

743744
.thumbnail {
744745
/* Define these variables here, and not in :root, since the individual
745-
thumbnails may have different sizes. */
746+
thumbnails may have different sizes. */
746747
--thumbnail-width: 0;
747748
--thumbnail-height: 0;
748749

@@ -1547,7 +1548,7 @@ dialog :link {
15471548

15481549
&::after {
15491550
/* All matching images have a size of 16x16
1550-
* All relevant containers have a size of 28x28 */
1551+
* All relevant containers have a size of 28x28 */
15511552
position: absolute;
15521553
display: inline;
15531554
width: var(--icon-size);
@@ -1607,7 +1608,7 @@ dialog :link {
16071608

16081609
#loadingBar {
16091610
/* Define these variables here, and not in :root, to avoid reflowing the
1610-
entire viewer when updating progress (see issue 15958). */
1611+
entire viewer when updating progress (see issue 15958). */
16111612
--progressBar-percent: 0%;
16121613
--progressBar-end-offset: 0;
16131614

0 commit comments

Comments
 (0)