Skip to content

Commit 4eca516

Browse files
addressing request: changed filepath.as_posix() to str(filepath)
1 parent 33b80b4 commit 4eca516

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tagstudio/src/qt/widgets/thumb_renderer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,7 @@ def _source_engine(self, filepath: Path) -> Image.Image | None:
599599
600600
It works using the VTF2IMG library for PILLOW.
601601
"""
602-
parser = Parser(filepath.as_posix())
602+
parser = Parser(str(filepath))
603603
im: Image.Image | None = None
604604
try:
605605
im = parser.get_image()

0 commit comments

Comments
 (0)