07 April 26, 07:41
26.4.5
Source
More at Home Site
- Fixed a preview font size mismatch when using editor highlighting styles in the preview on high-DPI displays (particularly on Windows with desktop scaling): the pixel-to-point conversion formula in the QLiteHtml container was inverted, causing fonts stored with a pixel size to be rendered at a massively inflated point size (e.g. a 9pt font appearing as ~100pt at 250% scaling); the formula is now
instead ofCode:pt = px * 72 / DPI
(for #3539)Code:pt = DPI * px / 72
- Fixed a possible crash (SIGSEGV) caused by inline markdown image previews for remote HTTP/HTTPS URLs performing a synchronous network download inside a paint event, which triggered a nested
and caused Qt's widget repaint manager to re-enter itself recursively until the stack overflowed; remote images are now fetched asynchronously and the viewport is refreshed automatically once the download completes (for #1254)Code:QEventLoop
- When searching with selected text via Ctrl+F in the note text edit, the preview, or the QLiteHTML preview, the first result now highlights the originally selected occurrence instead of jumping to the next one, so the editor/view no longer scrolls away from the user's current position (for #3541)
- Added more French, Korean, Spanish translation (thank you, jd-develop, VenusGirl, AlejandroMoc)
Source
More at Home Site


![[-]](https://www.geeks.fyi/images/collapse.png)

