Bug 464050 - Focus handling prevents text selection by mouse; r=vladimir

This commit is contained in:
Steffen Imhof 2009-02-16 16:27:18 +01:00
Родитель 2b89342d73
Коммит 39b73acecd
1 изменённых файлов: 6 добавлений и 0 удалений

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

@ -1811,6 +1811,12 @@ nsWindow::NativeCreate(nsIWidget *aParent,
Initialize(mDrawingArea);
// disable focus handling for secondary windows (problems with mouse selection and NS_ACTIVATE)
if (aParent != nsnull)
{
mDrawingArea->setFocusPolicy(Qt::NoFocus);
}
LOG(("Create: nsWindow [%p] [%p]\n", (void *)this, (void *)mDrawingArea));
// resize so that everything is set to the right dimensions