Hi,
It seems to me that if "show icon overlays" is checked, it has a small impact on performance.
So I like to keep it off, however sometimes I like to see overlay icons for a git repo (TortoiseGit icons).
I think it would be useful/helpful if there was a button in the toolbar that I could use to toggle this option,
Thanks
rb
Button to toggle "show icon overlays"
-
- Posts: 4369
- Joined: 28 Feb 2012 19:27
- Location: Windows 11, 24H2 Build 26100.4770 at 100% 2560x1440
Re: Button to toggle "show icon overlays"
If you are referring to icon overlays on thumbnails, this will do it. Assign it to a custom toolbar button or UDC. Try it from the address bar or run script.
thumbsconf(",,,,,!");
Re: Button to toggle "show icon overlays"
No, I'm referring to the setting under General->Refresh, Icons, History->Show icon overlays
Re: Button to toggle "show icon overlays"
I've been trying this script:
sendkeys '{PGUP}{r}%i{ }{ENTER}';#600;
But it doesn't do it...
sendkeys '{PGUP}{r}%i{ }{ENTER}';#600;
But it doesn't do it...
Re: Button to toggle "show icon overlays"
This worked:
I found if I set a hotkey for it (Ctrl+Shift+O), then it doesn't work properly: The configuration dialog pops up, and goes to the first section (Tree and List), but does nothing further. My guess is that pressing the hotkey interferes with the execution of sendkeys..
Code: Select all
sendkeys '{PGUP}{r}%i{ENTER}';#600;
-
- Site Admin
- Posts: 64242
- Joined: 22 May 2004 16:48
- Location: Win8.1, Win10, Win11, all @100%
- Contact:
Re: Button to toggle "show icon overlays"
The next beta allows you to toggle it via scripting:
You can then use e.g. a custom toolbar button or a bookmark button to open it to the mouse.
Code: Select all
conf("ShowIconOverlays", 0, 1); //toggle 0/1
FAQ | XY News RSS | XY X - Forum users with the Windows version and screen scaling percentage in the Location field of their profiles get priority support.
Re: Button to toggle "show icon overlays"
Good news, thanks!