mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
[INPUT] Fix IsRebootNeeded condition
If there is any IME HKL, reboot is needed.
Follow-up to #4666 (596f04b
). CORE-11700, CORE-18364
This commit is contained in:
parent
75116d6b87
commit
fd46398b63
1 changed files with 1 additions and 6 deletions
|
@ -360,12 +360,7 @@ static BOOL IsRebootNeeded(VOID)
|
|||
{
|
||||
if (IS_IME_HKL(pNode->hkl)) /* IME? */
|
||||
{
|
||||
if (pNode->wFlags & (INPUT_LIST_NODE_FLAG_ADDED |
|
||||
INPUT_LIST_NODE_FLAG_EDITED |
|
||||
INPUT_LIST_NODE_FLAG_DEFAULT))
|
||||
{
|
||||
return TRUE;
|
||||
}
|
||||
return TRUE;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue