diff --git a/src/gui/formmain.cpp b/src/gui/formmain.cpp index b2ce54574..4f7bfe6b0 100644 --- a/src/gui/formmain.cpp +++ b/src/gui/formmain.cpp @@ -46,7 +46,8 @@ QMenu *FormMain::getTrayMenu() { QList FormMain::getActions() { QList actions; actions << m_ui->m_actionImport << m_ui->m_actionExport << - m_ui->m_actionSettings << m_ui->m_actionQuit; + m_ui->m_actionSettings << m_ui->m_actionQuit << + m_ui->m_actionFullscreen << m_ui->m_actionAboutGuard; return actions; } diff --git a/src/gui/shortcutcatcher.cpp b/src/gui/shortcutcatcher.cpp index 5cddbbb13..3cef2fe25 100644 --- a/src/gui/shortcutcatcher.cpp +++ b/src/gui/shortcutcatcher.cpp @@ -43,7 +43,7 @@ ShortcutCatcher::ShortcutCatcher(QWidget *parent) // Create clear button. m_clearButton = new QToolButton(this); - m_clearButton->setIcon(ThemeFactory::fromTheme("dialog-cancel")); + m_clearButton->setIcon(ThemeFactory::fromTheme("document-revert")); m_clearButton->setFocusPolicy(Qt::NoFocus); // Clear main shortcut catching button.