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!

68 replies
Sort By: 

Oct 13, 2024 10:59 AM in response to paulofrommatosinhos

I doubt it is as much as Apple blocking third-party Quick Look code as the software may not have been recompiled to work with the current operating system and any Apple Frameworks that may have changed since the third-party plug-in was originally released. That is on the developer, not Apple.


I used to have a Markdown QL engine that was written several years ago that has not been updated or worked since macOS Big Sur because the original developer never stayed engaged with keeping it current.

Reply

Oct 13, 2024 11:03 AM in response to viviansville

In that Finder Window that you just provided a screenshot, press cmd+J to open the Show View Options panel. Is the Show icon preview selected, and if not, by selecting it do the generic icons change to their respective image?


When those PNGs were produced, was there an option to include an icon image that may have been overlooked?

Reply

Oct 29, 2024 8:58 AM in response to MSNyerges

Indexing is definitely an issue with Sequoia. Since 15.1, it’s better, but there are still folders at times in which thumbnails do not show, just the image icons. Also, I can’t airdrop files anymore to my wife’s older MacBook, which I was able to do without issue before Sequoia. When I try, it responds with a failure message.

Reply

Nov 13, 2024 6:50 AM in response to MSNyerges

Since the update to Sequoia 15.1, I'm getting thumbnails for my Canon raw files .CR2, TIFF files and JPEGs, BUT NOT my .DNG files, which are ironically produced by my iPhone 15 Pro Max and are displayed as thumbnails in Photos.


Immediately after updating from 15.01 to 15.1, the battery on my Apple M1 MacBook Pro drained much faster than previously, but that seems to have slowed down. The launch-at-startup antivirus comes up almost immediately when logging in, which is also a change. It came up much slower before the update to 15.1.


So there's been progress with this issue, but there's still a ways to go.


Reply

Dec 21, 2024 9:59 AM in response to callaway

Unfortunately not. I am updated and it's not fixed. In fact, I have new images that are solid white thumbnails now. If I click on the image and have the preview sidebar open it shows the image in the sidebar, but not the thumb.

Most of them with issues (if not all of them) are on the local HDD and not on external drives. So it's definitely a localized system issue.

Reply

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

Feb 9, 2025 2:04 PM in response to philip@

philip@ wrote:

Solved (for me). Using Sequoia 15.3 this issue happened for the first time using Pages (thumbnail). Came here to find answer - nothing. My solution was to click on 'View' in the Finder menu, open 'Show View Options' and to adjust the thumbnail icon size 'slider'. Alternating from larger to smaller you can watch the generic thumbnail placeholder disappear / reappear as all thumbnails increase / decrease in size. I preferred them larger so left it at increased size and issue is gone. It also seemed to work by going back to original size after adjusting back and forth a few times but I wasn't paying too close attention.

That IS interesting! Yes, for me too, however the only way to get them all to show is at 80x80 sizing. If I increase more and more of the previews disappear. Very interesting development! Thanks! Now if I could just reset all my folders to be 80x80 instead of doing it manually, it'd be good until there's a fix.

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.