Ver Fonte

Ignore Drop events

Vincent Lang há 7 anos atrás
pai
commit
d352fb9c95
1 ficheiros alterados com 5 adições e 0 exclusões
  1. 5 0
      src/ui/EventFilter.cpp

+ 5 - 0
src/ui/EventFilter.cpp

@@ -152,6 +152,11 @@ bool EventFilter::eventFilter(QObject* watched, QEvent* event)
     if ((mouseEvent) && (mouseEvent->button() == Qt::RightButton))
       return true;
   }
+  else if (event->type() == QEvent::Drop)
+  {
+    // QtWebEngine would accept the drop and unload web-client.
+    return true;
+  }
 
   return QObject::eventFilter(watched, event);
 }