ccmake: Align 'g' and 'q' key instructions.
They were miss-aligned with the 'enter' key instruction. Before: ---- Press [enter] to edit option CMake Version 2.8.3.20110107-g4b05a-dirty Press [c] to configure Press [h] for help Press [q] to quit without generating ---- After: ---- Press [enter] to edit option CMake Version 2.8.3.20110107-g4b05a-dirty Press [c] to configure Press [h] for help Press [q] to quit without generating ----
This commit is contained in:
parent
bfb0ed4293
commit
fd63219557
|
@ -421,7 +421,7 @@ void cmCursesMainForm::PrintKeys(int process /* = 0 */)
|
|||
if (this->OkToGenerate)
|
||||
{
|
||||
sprintf(firstLine,
|
||||
"Press [c] to configure Press [g] to generate and exit");
|
||||
"Press [c] to configure Press [g] to generate and exit");
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -437,7 +437,8 @@ void cmCursesMainForm::PrintKeys(int process /* = 0 */)
|
|||
}
|
||||
|
||||
sprintf(secondLine,
|
||||
"Press [h] for help Press [q] to quit without generating");
|
||||
"Press [h] for help "
|
||||
"Press [q] to quit without generating");
|
||||
}
|
||||
|
||||
curses_move(y-4,0);
|
||||
|
|
Loading…
Reference in New Issue