From 300a8da4dc35f4593dadb18eb66d09894c331500 Mon Sep 17 00:00:00 2001 From: Martin Rotter Date: Wed, 22 Feb 2017 07:48:13 +0100 Subject: [PATCH] Fixed #90. --- resources/text/CHANGELOG | 1 + src/gui/dialogs/formmain.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/resources/text/CHANGELOG b/resources/text/CHANGELOG index 7a3ba77fb..395424a1e 100755 --- a/resources/text/CHANGELOG +++ b/resources/text/CHANGELOG @@ -2,6 +2,7 @@ ————— Added: +▪ "Cleanup database" action has now configurable shortcut. (issue #90) ▪ Fixed #76, now user can choose to "not show the dialog again" when opening hyperlink from message previewer. This only concerns the lite version of RSS Guard which uses simpler text component for message previewing. Changed: diff --git a/src/gui/dialogs/formmain.cpp b/src/gui/dialogs/formmain.cpp index 260348424..7be5c4638 100755 --- a/src/gui/dialogs/formmain.cpp +++ b/src/gui/dialogs/formmain.cpp @@ -164,6 +164,7 @@ QList FormMain::allActions() const { actions << m_ui->m_actionServiceAdd; actions << m_ui->m_actionServiceEdit; actions << m_ui->m_actionServiceDelete; + actions << m_ui->m_actionCleanupDatabase; actions << m_ui->m_actionAddFeedIntoSelectedAccount; actions << m_ui->m_actionAddCategoryIntoSelectedAccount; actions << m_ui->m_actionViewSelectedItemsNewspaperMode;