Version: (using KDE Devel) Installed from: Compiled sources OS: Linux Ctrl-Shift-S does not perform 'Save as' action which is standard for that shortcut according to KDE HIG.
And digiKam image editor use the KStdAction::saveAs() method for that (:=))) : void EditorWindow::setupStandardActions() { ... m_saveAsAction = KStdAction::saveAs(this, SLOT(slotSaveAs()), actionCollection(), "editorwindow_saveas"); ... } Look like it's non-coherent... With KStdAction methods, we cannot give a shortcut. All is given by KDE API (to be homogenous and simplify the devel. life)... A solution is to use KAction instead Gilles
Mik, Like this standard SaveAs action is defined by KDE API, I recommend you to move this bug report to KDE (I don't know where exactly)... Like this, all others applications witch use it will be fixed. The method in KDE API is given below : http://api.kde.org/cvs-api/kdelibs-apidocs/kdeui/html/namespaceKStdAction.html#a70 Gilles
Mik, Please report this problem in KDE core part of bugzilla. Thanks in advance Gilles