Added code to set the XmNx and XmNy attributes in the resize method

This commit is contained in:
kmcclusk%netscape.com 1998-07-16 21:28:51 +00:00
Родитель 94ec6d13a6
Коммит 24cc939a2b
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -770,7 +770,7 @@ void nsWindow::Resize(PRUint32 aWidth, PRUint32 aHeight, PRBool aRepaint)
mBounds.height = aHeight;
UpdateVisibilityFlag();
UpdateDisplay();
XtVaSetValues(mWidget, XmNwidth, aWidth, XmNheight, aHeight, nsnull);
XtVaSetValues(mWidget, XmNx, mBounds.x, XmNy, mBounds.y, XmNwidth, aWidth, XmNheight, aHeight, nsnull);
}