Navigation Menu

Skip to content

Commit

Permalink
Don't process user input events while loading wfs data
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@7437 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
mhugent committed Nov 17, 2007
1 parent 48cf9d3 commit ed8fa98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/wfs/qgswfsdata.cpp
Expand Up @@ -93,7 +93,7 @@ int QgsWFSData::getWFSData()
readData = mHttp.readAll();
XML_Parse(p, readData.data(), readData.size(), atEnd);
}
qApp->processEvents();
qApp->processEvents(QEventLoop::ExcludeUserInputEvents);
}
qWarning("Left loop");
return 0; //soon
Expand Down

0 comments on commit ed8fa98

Please sign in to comment.