Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Find, click in search result on folder => highlight
#2
One workaround is to change system colors. The color of selected item background in non-focused controls is the same as of buttons and dialog background.

On Windows 10 they removed this from Control Panel, but it is still possible.

This macro shows current color and changes to a darker color.

Macro Macro2952
Code:
Copy      Help
int colorName=COLOR_BTNFACE

int oldColor=GetSysColor(colorName)
out F"old color: 0x{oldColor}" ;;0xF0F0F0 on my Windows 10

int newColor=0xD0D0D0 ;;darker than 0xF0F0F0
if(!SetSysColors(1 &colorName &newColor)) end "failed" 16


Messages In This Thread
RE: Find, click in search result on folder => highlight - by Gintaras - 01-15-2018, 06:51 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)