Desktop Icons Spaced Out?
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Horror Game Menu Looping
--
Chapters
00:00 Desktop Icons Spaced Out?
00:26 Accepted Answer Score 19
01:19 Answer 2 Score 6
01:55 Answer 3 Score 2
02:31 Answer 4 Score 2
02:53 Answer 5 Score 2
03:48 Thank you
--
Full question
https://superuser.com/questions/1554668/...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#windows10 #desktopicons
#avk47
ACCEPTED ANSWER
Score 19
DISCLAIMER: Take caution when using Registry Editor.
- Change the
IconSpacing
andIconVerticalSpacing
values in Registry Editor to the Windows default value of-1128
:
Open Registry Editor by hitting Win + R and typing
regedit
into the Run box.Hit Enter and click 'Yes' to open Registry Editor.
Navigate to following:
HKEY_CURRENT_USER\Control Panel\Desktop\WindowMetrics
You can paste this in the "address bar" in registry editor window
Change
IconSpacing
andIconVerticalSpacing
values to-1125
by double-clicking on them and modifying the current value.Save changes and exit Registry Editor.
Reboot your machine.
ANSWER 2
Score 6
This problem came up for me today and as Angus says, simply restarting windows explorer fixed it.
An even easier way to do this on Windows 10 is to just restart it from the task manager rather than command prompt.
This is a much simpler fix than editing registry entries as suggested in the top answer. It cannot be fixed by adjusting the icon size to small/medium/large etc as that is not causing the problem as OP said.
ANSWER 3
Score 2
Right click on the Desktop and select View, then Small Icons. The icon setting for Small, Medium or Large Icons is the only setting that affects Icon spacing for a given resolution.
Check that your resolution has been set to native for your display.
Make sure in Windows 10 Settings, System, Display that Scale and Text size are normal. If System Wide text size has been enlarged, this would cause Icons to space out. Check text size by searching Settings for "Make Text Bigger" and set to 100%.
ANSWER 4
Score 2
It happens sometimes when connecting a second display to a laptop. In Windows 11 the IconSpacing were right and resetting Windows Explorer didn't work neither.
Restarting the computer worked (maybe just restarsting the session could work too)
ANSWER 5
Score 2
The spacing grid is controlled by values in the registry, as explained in the accepted answer.
For those who don't like clicking around in the registry editor, here is the alternative for copy/pasting into the command-line window:
To see the current settings:
reg query HKCU\"Control Panel\Desktop\WindowMetrics" | findstr Spacing
To change it, use values between -480 and -2780. The default is -1125 (or -1128?).
reg add HKCU\"Control Panel\Desktop\WindowMetrics" /v IconSpacing /d "-1125" /f
reg add HKCU\"Control Panel\Desktop\WindowMetrics" /v IconVerticalSpacing /d "-1125" /f
To see the result, you need to Sign out and Sign in again. (restarting Explorer doesn't seem to be enough)
To change the icon size, you can click on the Desktop, and Ctrl-scroll with the mouse.