You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ( mySettings.value( QString( "/Plugins/watchDog/%1" ).arg( baseName ) ).isValid() )
473
+
{
474
+
mQgisInterface->messageBar()->pushWarning( QObject::tr( "Plugin %1" ).arg( baseName ), QObject::tr( "The plugin will be disabled because it crashed QGIS during last startup. Please report an issue and re-enable the plugin when the problem has been solved." ) );
// end - temporary fix for issue #5879, more below
519
524
520
-
if ( checkPythonPlugin( packageName ) )
521
-
{
522
-
// check if the plugin was active on last session
523
525
524
-
if ( mySettings.value( "/PythonPlugins/" + packageName ).toBool() )
526
+
if ( mySettings.value( "/PythonPlugins/watchDog/" + packageName ).isValid() )
527
+
{
528
+
mQgisInterface->messageBar()->pushWarning( "Plugin " + packageName, "The plugin will be disabled because it crashed QGIS during last startup. Please report an issue and re-enable the plugin when the problem has been solved." );
0 commit comments