[BeOS Only] Bug 66809: New MODAL_SUBSET windows are no created. r=VYA04230@nifty.com

This commit is contained in:
guru%startrek.com 2001-04-26 12:42:22 +00:00
Родитель d901249b35
Коммит 1c64d22593
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -551,7 +551,11 @@ nsresult nsWindow::StandardWindowCreate(nsIWidget *aParent,
{
// create window (dialog)
bool is_subset = (parent)? true : false;
window_feel feel = (is_subset) ? B_MODAL_SUBSET_WINDOW_FEEL : B_MODAL_APP_WINDOW_FEEL;
// see bugzilla bug 66809 regarding this change -wade <guru@startrek.com>
//window_feel feel = (is_subset) ? B_MODAL_SUBSET_WINDOW_FEEL : B_MODAL_APP_WINDOW_FEEL;
window_feel feel = B_NORMAL_WINDOW_FEEL;
BRect winrect = BRect(aRect.x, aRect.y, aRect.x + aRect.width - 1, aRect.y + aRect.height - 1);
winrect.OffsetBy( 10, 30 );