addToFavourites: catch exception when saving entry
Dieser Commit ist enthalten in:
Ursprung
47c0358a25
Commit
84cf8837bd
10
window.cpp
10
window.cpp
@ -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));
|
||||
}
|
||||
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren