bug 147223, URL bar doesn't function if launched too quickly in turbo mode, r=law, sr=darin

This commit is contained in:
morse%netscape.com 2002-06-12 20:29:46 +00:00
Родитель 73767e2c4b
Коммит 8115459602
1 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -1553,6 +1553,14 @@ HDDEDATA nsNativeAppSupportWin::CreateDDEData( LPBYTE value, DWORD len ) {
// unfortunately (if you can fix that, please do).
void
nsNativeAppSupportWin::HandleRequest( LPBYTE request, PRBool newWindow ) {
// if initial hidden window is still being displayed, we need to ignore requests
// because such requests might not function properly. See bug 147223 for details
if (mInitialWindow) {
return;
}
// Parse command line.
nsCOMPtr<nsICmdLineService> args;