Skip to content

Commit 0f210eb

Browse files
committed
[FIX] Fixed fallback thumbnail image path
1 parent c81e1ac commit 0f210eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fxgui/fxwidgets/_delegates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1018,7 +1018,7 @@ def _draw_thumbnail_content(
10181018
# Use fallback if thumbnail is null/invalid
10191019
if thumbnail.isNull():
10201020
fallback_path = (
1021-
Path(__file__).parent.parent / "images" / "splash.png"
1021+
Path(__file__).parent.parent / "images" / "missing_image.png"
10221022
)
10231023
if fallback_path.exists():
10241024
thumbnail = QPixmap(str(fallback_path))

0 commit comments

Comments
 (0)