1
0
Fork 0
mirror of synced 2024-05-24 06:19:55 +12:00

ImageSize: Make Library images slightly larger to accommodate more text on macOS

This commit is contained in:
loathingKernel 2023-12-16 13:52:37 +02:00
parent 8e573083ad
commit 1139765343
No known key found for this signature in database
GPG key ID: CE0C72D0B53821FD

View file

@ -70,9 +70,9 @@ class ImageSize:
DisplayWide = Preset(1, 1, Orientation.Wide, base=ImageWide)
"""! @brief Size and pixel ratio for wide 16/9 image display"""
LibraryWide = Preset(1.33, 1, Orientation.Wide, base=ImageWide)
LibraryWide = Preset(1.21, 1, Orientation.Wide, base=ImageWide)
Library = Preset(1.33, 1, base=Image)
Library = Preset(1.21, 1, base=Image)
"""! @brief Same as Display"""
Small = Preset(3, 1, base=Image)