Add missing icons for Kleopatra's GpgME backends.

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/8/head
Michele Calgaro 5 years ago
parent 4e2582d3eb
commit e07bf1c45e
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -9,7 +9,7 @@
#
#################################################
tde_install_icons( gpg gpgsm )
tde_install_icons( gpg gpgsm gpg_agent dirmngr scdaemon pinentry )
install( FILES
key.png key_ok.png key_bad.png key_unknown.png chiasmus_chi.png

@ -1,4 +1,4 @@
picsdir = $(kde_datadir)/libkleopatra/pics
pics_DATA = key.png key_ok.png key_bad.png key_unknown.png chiasmus_chi.png
KDE_ICON = gpg gpgsm
KDE_ICON = gpg gpgsm gpg_agent dirmngr scdaemon pinentry

Binary file not shown.

After

Width:  |  Height:  |  Size: 750 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 750 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 750 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 750 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 873 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 873 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 873 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 873 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

@ -98,7 +98,11 @@ Kleo::CryptoConfigModule::CryptoConfigModule( Kleo::CryptoConfig* config, TQWidg
if ( comp->groupList().empty() )
continue;
if ( face() != Plain ) {
vbox = addVBoxPage( comp->description(), TQString(), loadIcon( comp->iconName() ) );
TQString iconName = comp->iconName();
if (iconName == TQString::null || iconName == "") {
iconName = "gpg";
}
vbox = addVBoxPage( comp->description(), TQString(), loadIcon(iconName) );
}
TQScrollView * scrollView = new TQScrollView( vbox );

Loading…
Cancel
Save