Nikolay Sivov (@nsivov) commented about dlls/comctl32/listview.c:
/* used to handle collapse main item column case */ static inline BOOL LISTVIEW_DrawFocusRect(const LISTVIEW_INFO *infoPtr, HDC hdc) {
- return (infoPtr->rcFocus.left < infoPtr->rcFocus.right) ?
- return (COMCTL32_keyboard_cues_enabled && infoPtr->rcFocus.left < infoPtr->rcFocus.right) ? DrawFocusRect(hdc, &infoPtr->rcFocus) : FALSE;
}
Same for this one. Afaict focus rectangle is always visible.