This commit is contained in:
law 1998-07-14 23:11:05 +00:00
Родитель eb09b8f6be
Коммит ce4bce4a4d
1 изменённых файлов: 5 добавлений и 2 удалений

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

@ -627,8 +627,11 @@ int CAbstractCX::GetUrl(URL_Struct *pUrl, FO_Present_Types iFormatOut, BOOL bRea
}
}
else if (GetContextType() != IconCX && GetContextType() != Pane) {
MWContext* pNewContext = SwitchToBrowserContext(pUrl);
return MK_CHANGING_CONTEXT;
// Make this conditional like non MOZ_MAIL_NEWS code below.
if( bForceNew && EDT_IS_EDITOR(GetContext()) ) {
MWContext* pNewContext = SwitchToBrowserContext(pUrl);
return MK_CHANGING_CONTEXT;
}
}
}
#else