答案1
在 Ubuntu 20.04.1 中,通过最新的 gnome-shell 更新(gnome-shell-extension-desktop-icons 20.04.0-3~ubuntu20.04.1),该错误仍然存在。
一个可能的修复方法是,在 /usr/share/gnome-shell/extensions/desktop-icons@csoriano/fileItem.js 中,将:替换
let containerWidth = (this._icon.allocation.x2 - this._icon.allocation.x1) * scaleFactor;
为:
let containerWidth = (this._icon.allocation.x2 - this._icon.allocation.x1);
,然后重新登录/重新启动系统。
基本上,这里的 scaleFactor 乘数是不必要的。在 Ubuntu 20.04.1 上测试,显示比例为 200%。删除上述 scaleFactor 乘数后,桌面缩略图可以正常工作。
您还可以查看错误报告这里。
答案2
这是一个错误
错误 #1868529“桌面上的拉伸图像预览”:错误:gnome-shell-extension-desktop-icons 包:Ubuntu
已通过更新修复了此问题,但还不够完美。对于长宽比小于容器长宽比的图像,长宽比仍然不正确。