Add 'Remember my choice' checkbox

Allow user to store preference when asked whether to execute command, resolves #51
This commit is contained in:
Janek Bevendorff 2017-01-28 14:18:43 +01:00
parent 0116d4176a
commit 01e9d39b63
No known key found for this signature in database
GPG key ID: CFEC2F6850BFFA53
5 changed files with 48 additions and 10 deletions

View file

@ -353,6 +353,12 @@ void Entry::setTitle(const QString& title)
void Entry::setUrl(const QString& url)
{
bool remove = url != m_attributes->value(EntryAttributes::URLKey) &&
(m_attributes->value(EntryAttributes::RememberCmdExecAttr) == "1" ||
m_attributes->value(EntryAttributes::RememberCmdExecAttr) == "0");
if (remove) {
m_attributes->remove(EntryAttributes::RememberCmdExecAttr);
}
m_attributes->set(EntryAttributes::URLKey, url, m_attributes->isProtected(EntryAttributes::URLKey));
}