core/reloader: fix crashing on failed reload

This commit is contained in:
outfoxxed 2024-05-31 04:03:00 -07:00
parent a8506edbb9
commit 238ca8cf0b
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E
2 changed files with 14 additions and 7 deletions

View file

@ -67,7 +67,7 @@ void RootWrapper::reloadGraph(bool hard) {
if (obj == nullptr) {
const QString error = "failed to create root component\n" + component.errorString();
qWarning().noquote() << error;
delete generation;
generation->destroy();
if (this->generation != nullptr && this->generation->qsgInstance != nullptr) {
emit this->generation->qsgInstance->reloadFailed(error);
@ -81,7 +81,7 @@ void RootWrapper::reloadGraph(bool hard) {
const QString error = "root component was not a Quickshell.ShellRoot";
qWarning().noquote() << error;
delete obj;
delete generation;
generation->destroy();
if (this->generation != nullptr && this->generation->qsgInstance != nullptr) {
emit this->generation->qsgInstance->reloadFailed(error);