Skip to content

Commit d720565

Browse files
authored
Merge pull request #4296 from OpenShot/fix-high-dpi-and-icons
Fixing High DPI widget mode and replacing Echo effect icon
2 parents f654a7b + a088bcc commit d720565

File tree

4 files changed

+3
-1
lines changed

4 files changed

+3
-1
lines changed

src/effects/icons/echo.png

-1.3 KB
Loading

src/effects/icons/[email protected]

-6.09 KB
Loading

src/images/cache/echo.png

-610 Bytes
Loading

src/launch.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,9 @@
6666
try:
6767
# Enable High-DPI resolutions
6868
QApplication.setAttribute(Qt.AA_EnableHighDpiScaling)
69-
QApplication.setAttribute(Qt.AA_UseHighDpiPixmaps)
69+
# TODO: Enabling high DPI pixmaps renders SVG files too small in libopenshot
70+
# and needs to be resolved before enabling this option.
71+
# QApplication.setAttribute(Qt.AA_UseHighDpiPixmaps)
7072
except AttributeError:
7173
pass # Quietly fail for older Qt5 versions
7274

0 commit comments

Comments
 (0)