Emit changed signal when resetting toolbar in editor.

This commit is contained in:
Martin Rotter 2020-11-20 08:43:02 +01:00
parent 81fa412b45
commit 8ab5b2d30d
2 changed files with 2 additions and 1 deletions

View File

@ -4,7 +4,7 @@ APP_REVERSE_NAME = "com.github.rssguard"
APP_LOW_H_NAME = ".rssguard" APP_LOW_H_NAME = ".rssguard"
APP_AUTHOR = "Martin Rotter" APP_AUTHOR = "Martin Rotter"
APP_COPYRIGHT = "(C) 2011-2020 $$APP_AUTHOR" APP_COPYRIGHT = "(C) 2011-2020 $$APP_AUTHOR"
APP_VERSION = "3.8.1" APP_VERSION = "3.8.2"
APP_LONG_NAME = "$$APP_NAME $$APP_VERSION" APP_LONG_NAME = "$$APP_NAME $$APP_VERSION"
APP_EMAIL = "rotter.martinos@gmail.com" APP_EMAIL = "rotter.martinos@gmail.com"
APP_URL = "https://github.com/martinrotter/rssguard" APP_URL = "https://github.com/martinrotter/rssguard"

View File

@ -57,6 +57,7 @@ void ToolBarEditor::saveToolBar() {
void ToolBarEditor::resetToolBar() { void ToolBarEditor::resetToolBar() {
if (m_toolBar != nullptr) { if (m_toolBar != nullptr) {
loadEditor(m_toolBar->convertActions(m_toolBar->defaultActions()), m_toolBar->availableActions()); loadEditor(m_toolBar->convertActions(m_toolBar->defaultActions()), m_toolBar->availableActions());
emit setupChanged();
} }
} }