This commit is contained in:
Klaus Basan
2018-09-22 00:20:28 +02:00
parent bba65326da
commit ff2f653aae
5 changed files with 10 additions and 10 deletions

View File

@@ -762,7 +762,7 @@ namespace BlackGui
const QPointer<const QWidget> wp(widget);
QTimer::singleShot(0, sGui, [ = ]
{
if (wp.isNull() || !sGui || sGui->isShuttingDown()) { return; }
if (!wp || !sGui || sGui->isShuttingDown()) { return; }
sGui->showHelp(widget);
});
return true;