mirror of
https://github.com/reactos/reactos.git
synced 2025-04-22 13:10:39 +00:00
Fix keyboard input in usetup.
svn path=/trunk/; revision=17050
This commit is contained in:
parent
0466e5cbb2
commit
b760d02f8f
1 changed files with 3 additions and 3 deletions
|
@ -1445,7 +1445,7 @@ SelectPartitionPage(PINPUT_RECORD Ir)
|
|||
|
||||
return SELECT_FILE_SYSTEM_PAGE;
|
||||
}
|
||||
else if (Ir->Event.KeyEvent.wVirtualKeyCode == 'c') /* C */
|
||||
else if (Ir->Event.KeyEvent.wVirtualKeyCode == 'C') /* C */
|
||||
{
|
||||
if (PartitionList->CurrentPartition->Unpartitioned == FALSE)
|
||||
{
|
||||
|
@ -1461,7 +1461,7 @@ SelectPartitionPage(PINPUT_RECORD Ir)
|
|||
|
||||
return CREATE_PARTITION_PAGE;
|
||||
}
|
||||
else if (Ir->Event.KeyEvent.wVirtualKeyCode == 'd') /* D */
|
||||
else if (Ir->Event.KeyEvent.wVirtualKeyCode == 'D') /* D */
|
||||
{
|
||||
if (PartitionList->CurrentPartition->Unpartitioned == TRUE)
|
||||
{
|
||||
|
@ -1971,7 +1971,7 @@ DeletePartitionPage (PINPUT_RECORD Ir)
|
|||
{
|
||||
return SELECT_PARTITION_PAGE;
|
||||
}
|
||||
else if (Ir->Event.KeyEvent.wVirtualKeyCode == 'd') /* D */
|
||||
else if (Ir->Event.KeyEvent.wVirtualKeyCode == 'D') /* D */
|
||||
{
|
||||
DeleteCurrentPartition (PartitionList);
|
||||
|
||||
|
|
Loading…
Reference in a new issue