[Webkit-unassigned] [Bug 108327] visibility of embedded widget

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Jan 31 03:34:13 PST 2013


https://bugs.webkit.org/show_bug.cgi?id=108327





--- Comment #2 from 123powerd231 <kvodinskiy at mail.ru>  2013-01-31 03:36:14 PST ---
The problem is that QtPluginWidget::hide not call Widget::hide()

fix code: 

virtual void show()
{
 Widget::show();
 handleVisibility();
}
virtual void hide()
{
 Widget::hide();
 handleVisibility();
}

void handleVisibility()
{
 if (platformWidget())
  widgetAdapter()->setVisible(isVisible());
}

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list