mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
Fix a crash when confirming config dialog of a locator filter
The locator was getting invalidated, but there was no feedback object associated for cancellation.
This commit is contained in:
parent
401c4637d9
commit
551a907329
@ -140,7 +140,8 @@ void QgsLocator::cancel()
|
||||
|
||||
void QgsLocator::cancelWithoutBlocking()
|
||||
{
|
||||
mFeedback->cancel();
|
||||
if ( mFeedback )
|
||||
mFeedback->cancel();
|
||||
}
|
||||
|
||||
bool QgsLocator::isRunning() const
|
||||
|
Loading…
x
Reference in New Issue
Block a user