mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[NTUSER] Call SpiSetDWord when processing SPI_SETCARETWIDTH message
This corresponds to REG_DWORD type of CaretWidth value. CORE-18151
This commit is contained in:
parent
0dd6aa6ca5
commit
d794996217
1 changed files with 1 additions and 1 deletions
|
@ -1740,7 +1740,7 @@ SpiGetSet(UINT uiAction, UINT uiParam, PVOID pvParam, FLONG fl)
|
|||
return SpiGetInt(pvParam, &gspv.dwCaretWidth, fl);
|
||||
|
||||
case SPI_SETCARETWIDTH:
|
||||
return SpiSetInt(&gspv.dwCaretWidth, uiParam, KEY_MOUSE, L"", fl);
|
||||
return SpiSetDWord(&gspv.dwCaretWidth, PtrToUlong(pvParam), KEY_DESKTOP, VAL_CARETWIDTH, fl);
|
||||
|
||||
case SPI_GETMOUSECLICKLOCKTIME:
|
||||
return SpiGetInt(pvParam, &gspv.dwMouseClickLockTime, fl);
|
||||
|
|
Loading…
Reference in a new issue