why are image thumbnails not displaying in finder since updating to sequoia on my m1 MacBook pro

Image thumbnails not displaying in finder since updating to sequoia on my m1 MacBook pro

MacBook Pro 16″, macOS 15.0

Posted on Sep 18, 2024 6:36 AM

Reply
Question marked as ⚠️ Top-ranking reply

Posted on Nov 21, 2024 2:27 PM

The issue of missing icon previews began in Ventura, but there was a plist workaround, which offered a temporary fix. However, this workaround was removed in Sonoma, and it appears they have doubled-down in Sequoia. This change significantly impacts my workflow as a long-time Mac designer. They must really want to get rid of us. If any Mac engineers are reading this, unless you want a mass-exodus... DO BETTER!

79 replies
Sort By: 

Jan 17, 2025 4:09 PM in response to MSNyerges

In case this can be useful, below is AppleScript code to modify Show icon preview. The sample code can be edited and included in an Automator workflow (via the run AppleScript action) to process multiple folders.


- Pie Lover


Turn off icon preview

	tell application "Finder"
		
		open (choose folder)
		
		if (current view of front Finder window) is icon view then
			set (shows icon preview of icon view options of front Finder window) to false
		else if (current view of front Finder window) is list view or (current view of front Finder window) is flow view then
			set (shows icon preview of list view options of front Finder window) to false
		else if (current view of front Finder window) is column view then
			set (shows icon preview of column view options of front Finder window) to false
			set (shows icon of column view options of front Finder window) to false
		end if
		
		close front Finder window
		
	end tell


Turn on icon preview

	tell application "Finder"
		
		open (choose folder)
		
		if (current view of front Finder window) is icon view then
			set (shows icon preview of icon view options of front Finder window) to true
		else if (current view of front Finder window) is list view or (current view of front Finder window) is flow view then
			set (shows icon preview of list view options of front Finder window) to true
		else if (current view of front Finder window) is column view then
			set (shows icon preview of column view options of front Finder window) to true
			set (shows icon of column view options of front Finder window) to true
		end if
		
		close front Finder window
		
	end tell
Reply

Apr 1, 2025 11:57 AM in response to philip@

Thanks but this does not work for me. RAW images shot with my Canon R1 have the generic "CR3" placeholder icon. I tried doing a "Get Info" on one of the photos but where the image should be is just a black box. Fortunately I can see the images in Adobe Lightroom Classic (my primary photo editing program) and Photoshop.

Hopefully I will be able to see video that I shot with this camera this past weekend. I need to edit it in iMovie.

Jan

Reply

Apr 6, 2025 12:03 PM in response to MSNyerges

I have been looking into this problem for a while, and recently one of my Macs was updated from 15.3.1. to 15.3.2, and the thumbnails all suddenly came back. I still had three other Macs with no thumbnails, I updated the three of them as well, and now all of four Macs are showing thumbnails.

Reply

Apr 25, 2025 8:17 PM in response to Colin Holgate

I'm using Sequoia 15.3.2 and I have the same issue only for some folders, and only for a few jpg pictures files. Adjusting the displayed thumbnail icon size to 80x80 or to smaller sizes has solved the issue for me... The problem seems to appear when the thumbnail icon size is 84x84 or larger ...

Reply

why are image thumbnails not displaying in finder since updating to sequoia on my m1 MacBook pro

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.