Add missing icons for Kleopatra's GpgME backends. #8

Merged
SlavekB merged 1 commits from feat/fix-kleopatra-icons into master 6 years ago

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

@ -1,4 +1,4 @@
picsdir = $(kde_datadir)/libkleopatra/pics picsdir = $(kde_datadir)/libkleopatra/pics
pics_DATA = key.png key_ok.png key_bad.png key_unknown.png chiasmus_chi.png 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() ) if ( comp->groupList().empty() )
continue; continue;
if ( face() != Plain ) { 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 ); TQScrollView * scrollView = new TQScrollView( vbox );

Loading…
Cancel
Save