Skip to content

Commit

Permalink
fix: #453
Browse files Browse the repository at this point in the history
  • Loading branch information
windingwind committed Jun 21, 2023
1 parent f5c31c8 commit a3d7732
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/popup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export function buildReaderPopup(readerInstance: _ZoteroTypes.ReaderInstance) {
lineHeight: `${
Number(getPref("lineHeight")) * Number(getPref("fontSize"))
}px`,
width: "-moz-available",
width: keepSize ? `${getPref("popupWidth")}px` : "-moz-available",
height: `${Math.max(
keepSize ? Number(getPref("popupHeight")) : 30
)}px`,
Expand Down

0 comments on commit a3d7732

Please sign in to comment.