Summary: | Wish: add "crypt messages" to toolbar | ||
---|---|---|---|
Product: | [Unmaintained] kopete | Reporter: | Iván Sánchez Ortega <ivansanchez> |
Component: | Cryptography Plugin | Assignee: | Kopete Developers <kopete-bugs-null> |
Status: | RESOLVED FIXED | ||
Severity: | wishlist | ||
Priority: | NOR | ||
Version: | 0.10 | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Iván Sánchez Ortega
2005-05-28 16:48:04 UTC
There is a (design) bug in the "edit toolbar" dialog that make some plugin actions doesn't appears. You can anyway made it appears in the toolbar by modifying manually KXMLGUI config files. let's hope that will be fixed for KDE4 SVN commit 688842 by cconnell: Add cryptography toolbar to chat window BUG:106414 GUI: M +5 -0 cryptographychatui.rc M +1 -1 cryptographyguiclient.cpp --- trunk/KDE/kdenetwork/kopete/plugins/cryptography/cryptographychatui.rc #688841:688842 @@ -6,5 +6,10 @@ <Action name="encryptionToggle" /> <Action name="signToggle" /> </Menu> + <ToolBar name="cryptographyToolBar" fullWidth="false"> + <text>Cryptography Toolbar</text> + <Action name="encryptionToggle" /> + <Action name="signToggle" /> + </ToolBar> </MenuBar> </kpartgui> --- trunk/KDE/kdenetwork/kopete/plugins/cryptography/cryptographyguiclient.cpp #688841:688842 @@ -69,7 +69,7 @@ m_encAction = new KToggleAction( KIcon("encrypted"), i18n("Encrypt Messages" ), this ); actionCollection()->addAction( "encryptionToggle", m_encAction ); - m_signAction = new KToggleAction ( KIcon ("signature"), i18n("Sign Message" ), this ); + m_signAction = new KToggleAction ( KIcon ("signature"), i18n("Sign Messages" ), this ); actionCollection()->addAction ("signToggle", m_signAction ); m_encAction->setChecked(wantEncrypt && keysAvailable); |