Created
December 28, 2021 14:14
-
-
Save tablacus/2d211bbf76684c98d60517f94113d9c1 to your computer and use it in GitHub Desktop.
Toggles the selection of focused item - Tablacus Explorer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const nFocused = FV.GetFocusedItem; | |
| const bSelected = api.SendMessage(FV.hwndList, LVM_GETITEMSTATE, nFocused, LVIS_SELECTED); | |
| FV.SelectItem(nFocused, bSelected ? SVSI_DESELECT : SVSI_SELECT); |
Author
tablacus
commented
Dec 28, 2021

Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment