addToFavourites: catch exception when saving entry

Este commit está contenido en:
Albert S. 2020-09-27 22:09:51 +02:00
padre 47c0358a25
commit 84cf8837bd
Se han modificado 1 ficheros con 9 adiciones y 1 borrados

Ver fichero

@ -135,7 +135,15 @@ void Window::addToFavourites(const EntryPushButton &button)
QFileInfo fi{button.getEntryConfig().entryPath};
QString entryName = fi.completeBaseName() + ".qsrun";
userConfig.entryPath = this->settingsProvider->userEntriesPaths()[0] + "/" + entryName;
entryProvider->saveUserEntry(userConfig);
try
{
entryProvider->saveUserEntry(userConfig);
}
catch(std::exception &e)
{
QMessageBox::critical(this, "Failed to save item to favourites", e.what());
return;
}
userEntryButtons.append(createEntryButton(userConfig));
}