mirror of
https://github.com/reactos/CMake.git
synced 2025-01-10 21:52:37 +00:00
Merge topic 'fix-13604-ccmake-del-key'
d424de4 ccmake: Allow DEL key in first column
This commit is contained in:
commit
8f47c8bed1
@ -175,7 +175,7 @@ bool cmCursesStringWidget::HandleInput(int& key, cmCursesMainForm* fm,
|
||||
}
|
||||
else if ( key == ctrl('d') ||key == KEY_DC )
|
||||
{
|
||||
if ( form->curcol > 0 )
|
||||
if ( form->curcol >= 0 )
|
||||
{
|
||||
form_driver(form, REQ_DEL_CHAR);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user