Skip to content

Commit a088bcc

Browse files
committed
Fixing High DPI widget mode (which is not ready yet), and replacing a few effect icons.
1 parent f654a7b commit a088bcc

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)