addToFavourites: only save the minimum

This commit is contained in:
Albert S. 2020-09-28 19:18:35 +02:00
parent 7c2461626d
commit 2d79d74e06
1 changed files with 5 additions and 1 deletions

View File

@ -127,7 +127,7 @@ void Window::executeConfig(const EntryConfig &config)
void Window::addToFavourites(const EntryConfig &config)
{
std::pair<int, int> cell = getNextFreeCell();
EntryConfig userConfig = config;
EntryConfig userConfig;
userConfig.userEntry = true;
userConfig.row = cell.first;
userConfig.col = cell.second;
@ -144,6 +144,10 @@ void Window::addToFavourites(const EntryConfig &config)
QMessageBox::critical(this, "Failed to save item to favourites", e.what());
return;
}
/*we only want to save a minimal, inherited config. but it should be a "complete" button
when we add it to the favourites. the alternative would be to reload the whole config,
but that's probably overkill. */
userConfig.update(config);
userEntryButtons.append(createEntryButton(userConfig));
}