aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar un1versal2016-08-02 11:48:16 +0100
committerGravatar un1versal2016-08-02 12:53:58 +0100
commitedec5dc218b9f308c354e204bd6dbe6e822f5f99 (patch)
treed47dca8d434c33724c5a9eb95ddf470f3fca5bb9 /src
parentactions label, typo fix (diff)
downloadKVIrc-edec5dc218b9f308c354e204bd6dbe6e822f5f99.tar.gz
KVIrc-edec5dc218b9f308c354e204bd6dbe6e822f5f99.tar.bz2
KVIrc-edec5dc218b9f308c354e204bd6dbe6e822f5f99.zip
KviMenubar: ensure Actions entry has an Icon at least.
Diffstat (limited to 'src')
-rw-r--r--src/kvirc/ui/KviMenuBar.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/kvirc/ui/KviMenuBar.cpp b/src/kvirc/ui/KviMenuBar.cpp
index 440d908a3..308078273 100644
--- a/src/kvirc/ui/KviMenuBar.cpp
+++ b/src/kvirc/ui/KviMenuBar.cpp
@@ -367,10 +367,12 @@ void KviMenuBar::setupToolsPopup(QMenu * pop)
pAction->setData(KVI_INTERNALCOMMAND_TERM_OPEN);
#endif
- m_pModulesToolsAction = m->addAction(__tr2qs("Modules tools"));
+ m->addSeparator();
+
+ m_pModulesToolsAction = m->addAction(__tr2qs("Module Tools"));
m_pModulesToolsAction->setMenu(m_pModulesToolsPopup);
- m_pActionsToolsAction = m->addAction(__tr2qs("Actions tools"));
+ m_pActionsToolsAction = m->addAction(*(g_pIconManager->getSmallIcon(KviIconManager::Action)), __tr2qs("Action Tools"));
m_pActionsToolsAction->setMenu(m_pActionsToolsPopup);
}