From 1981b134c37895ebab983c0f35362fd77db5d0d4 Mon Sep 17 00:00:00 2001 From: TheBobBobs <84781603+TheBobBobs@users.noreply.github.com> Date: Tue, 23 Sep 2025 23:10:16 +0000 Subject: [PATCH] fix: use absolute path for file opener (#1136) --- src/tagstudio/qt/mixed/item_thumb.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tagstudio/qt/mixed/item_thumb.py b/src/tagstudio/qt/mixed/item_thumb.py index 5637a951..d2f1f985 100644 --- a/src/tagstudio/qt/mixed/item_thumb.py +++ b/src/tagstudio/qt/mixed/item_thumb.py @@ -439,7 +439,8 @@ class ItemThumb(FlowWidget): def set_item(self, entry: "Entry"): self.set_item_id(entry.id) - self.set_item_path(entry.path) + path = unwrap(self.lib.library_dir) / entry.path + self.set_item_path(path) def set_item_id(self, item_id: int): self.item_id = item_id