1
mirror of https://invent.kde.org/network/falkon.git synced 2024-12-20 10:46:35 +01:00

Merge branch 'Falkon/3.0'

This commit is contained in:
David Rosca 2018-04-22 18:55:29 +02:00
commit a5ba6df966
No known key found for this signature in database
GPG Key ID: EBC3FC294452C6D8

View File

@ -1274,13 +1274,17 @@ bool WebView::eventFilter(QObject *obj, QEvent *event)
}
// Hack to find widget that receives input events
if (obj == this && event->type() == QEvent::ChildAdded && !m_rwhvqt && focusProxy()) {
if (obj == this && event->type() == QEvent::ChildAdded) {
QTimer::singleShot(0, this, [this]() {
if (focusProxy() && m_rwhvqt != focusProxy()) {
m_rwhvqt = focusProxy();
m_rwhvqt->installEventFilter(this);
if (QQuickWidget *w = qobject_cast<QQuickWidget*>(m_rwhvqt)) {
w->setClearColor(palette().color(QPalette::Window));
}
}
});
}
// Forward events to WebView
#define HANDLE_EVENT(f, t) \