Skip to content

Commit 9a15cfe

Browse files
author
mhugent
committed
Don't process user input events while loading wfs data
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@7437 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent a82999e commit 9a15cfe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/providers/wfs/qgswfsdata.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ int QgsWFSData::getWFSData()
9393
readData = mHttp.readAll();
9494
XML_Parse(p, readData.data(), readData.size(), atEnd);
9595
}
96-
qApp->processEvents();
96+
qApp->processEvents(QEventLoop::ExcludeUserInputEvents);
9797
}
9898
qWarning("Left loop");
9999
return 0; //soon

0 commit comments

Comments
 (0)