From fcf6cc8bac26be57750dfe22ba9f61d03e44e9a2 Mon Sep 17 00:00:00 2001 From: buzzingwires Date: Tue, 11 Jul 2023 13:54:46 -0400 Subject: [PATCH] Specify shared icon cache as location for thumbnail.save --- vimiv/api/settings.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/vimiv/api/settings.py b/vimiv/api/settings.py index 71afa1848..a45cd22af 100644 --- a/vimiv/api/settings.py +++ b/vimiv/api/settings.py @@ -471,7 +471,9 @@ class thumbnail: # pylint: disable=invalid-name size = ThumbnailSizeSetting("thumbnail.size", 128, desc="Size of thumbnails") save = BoolSetting( - "thumbnail.save", True, desc="Save new thumbnails to disk for later use" + "thumbnail.save", + True, + desc="Save new thumbnails to the disk in the shared icon cache for later use" )