Version: (using KDE 4.1.3) OS: Linux Installed from: Compiled From Sources The shortcuts are displayed randomly in the shortcuts editor dialog. Most of the time they are not visible, sometimes only the HTML export plugin is displayed.
Created attachment 29397 [details] no shortcuts visible The screenshot was taken after removing the digikamrc file and starting with a fresh config file. No entries can be found.
Andi, Comment code like this: void DigikamApp::slotEditKeys() { KShortcutsDialog dialog(KShortcutsEditor::AllActions, KShortcutsEditor::LetterShortcutsAllowed, this); dialog.addCollection( actionCollection(), i18n( "General" ) ); /* KIPI::PluginLoader::PluginList list = d->kipiPluginLoader->pluginList(); for( KIPI::PluginLoader::PluginList::Iterator it = list.begin() ; it != list.end() ; ++it ) { KIPI::Plugin* plugin = (*it)->plugin(); if ( plugin ) dialog.addCollection(plugin->actionCollection(), (*it)->comment()); } */ dialog.configure(); } ... and digiKam shorcuts are here. Sound like a problem with kipi-plugins... Gilles
/me hopes it is not my fault :-) I'll check my KIPI Plugin...
SVN commit 898197 by cgilles: digiKam from trunk : fix iterator to fill kipi-plugins keyboard shorcuts BUG: 177999 M +5 -6 digikamapp.cpp WebSVN link: http://websvn.kde.org/?view=rev&revision=898197
That seems to fix the main problem, but still only the HTML plugin is listed in there... all other KIPI Plugins are not shown in the editor. Andi
Andi, Editor do not support kipi-plugins. Why do you want to add kipi shortcuts here ? Gilles
;-) I was talking about the shortcut editor, not the image editor component. KIPI Plugins are not listed correctly in the shortcuts editor. Only HTML Export is in there. Andi
SVN commit 898223 by cgilles: SlideShow kipi-plugin: fix registration in ActionCollection CCBUG: 177999 M +8 -7 plugin_slideshow.cpp WebSVN link: http://websvn.kde.org/?view=rev&revision=898223
Andi, Look my commit #898223. All kipi-plugins need to be fixed in a same this way... Gilles
SVN commit 898289 by aclemens: JPEGLossLess kipi-plugin: fix registration in ActionCollection BUG:177999 M +13 -12 plugin_jpeglossless.cpp WebSVN link: http://websvn.kde.org/?view=rev&revision=898289