Buttons from focused license text fixed (return will not work if next button not enabled and escape will work as cancel)
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2391 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
68c97de740
commit
34e75bfd21
4 changed files with 28 additions and 18 deletions
|
@ -839,7 +839,7 @@ static int NSISCALL ExecuteEntry(entry *entry_)
|
|||
DWORD lExitCode;
|
||||
while (WaitForSingleObject(hProc,100) == WAIT_TIMEOUT)
|
||||
{
|
||||
static MSG msg;
|
||||
MSG msg;
|
||||
while (PeekMessage(&msg,NULL,WM_PAINT,WM_PAINT,PM_REMOVE))
|
||||
DispatchMessage(&msg);
|
||||
}
|
||||
|
@ -1129,7 +1129,7 @@ static int NSISCALL ExecuteEntry(entry *entry_)
|
|||
return 0;
|
||||
case EW_READINISTR:
|
||||
{
|
||||
static const char *errstr="!N~";
|
||||
const char *errstr="!N~";
|
||||
char *p=var0;
|
||||
char *buf0=process_string_fromparm_tobuf(0x01);
|
||||
char *buf1=process_string_fromparm_tobuf(0x12);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue