diff options
author | Friedrich W. H. Kossebau <kossebau@kde.org> | 2020-09-01 11:13:43 +0200 |
---|---|---|
committer | Friedrich W. H. Kossebau <kossebau@kde.org> | 2020-09-01 11:13:43 +0200 |
commit | 7ce130f3c6de55d834bd8f0b24498e4ea0626c25 (patch) | |
tree | 28681648ba59fd1d95907428d9177a9fafe315f8 /src/gui | |
parent | 5674ebfdc2a450319a2c49568daac2af7ea15ef0 (diff) | |
download | kconfig-7ce130f3c6de55d834bd8f0b24498e4ea0626c25.tar.gz kconfig-7ce130f3c6de55d834bd8f0b24498e4ea0626c25.tar.bz2 |
Missing g_infoStandardShortcut update for last commit
GIT_SILENT
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/kstandardshortcut.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/kstandardshortcut.cpp b/src/gui/kstandardshortcut.cpp index 70fef713..df5ebe4b 100644 --- a/src/gui/kstandardshortcut.cpp +++ b/src/gui/kstandardshortcut.cpp @@ -167,10 +167,10 @@ static KStandardShortcutInfo g_infoStandardShortcut[] = { // https://commits.kde.org/kxmlgui/8eabbf6725386e716b7536c71a9181dfe5d959f0 { DeleteFile, "DeleteFile", QT_TRANSLATE_NOOP3("KStandardShortcut", "Delete", "@action"), SHIFT(Delete), 0, QList<QKeySequence>(), false, Category::File }, { RenameFile, "RenameFile", QT_TRANSLATE_NOOP3("KStandardShortcut", "Rename", "@action"), Qt::Key_F2, 0, QList<QKeySequence>(), false, Category::File }, - { CreateFolder, "CreateFolder", QT_TRANSLATE_NOOP3("KStandardShortcut", "Create Folder", "@action"), Qt::Key_F10, 0, QList<QKeySequence>(), false, Category::File }, { MoveToTrash, "MoveToTrash", QT_TRANSLATE_NOOP3("KStandardShortcut", "Move to Trash", "@action"), Qt::Key_Delete, 0, QList<QKeySequence>(), false, Category::File }, { Donate, "Donate", QT_TRANSLATE_NOOP3("KStandardShortcut", "Donate", "@action"), 0, 0, QList<QKeySequence>(), false, Category::Help }, { ShowHideHiddenFiles, "ShowHideHiddenFiles", QT_TRANSLATE_NOOP3("KStandardShortcut", "Show/Hide Hidden Files", "@action"), CTRL(H), ALT(Period), QList<QKeySequence>(), false, Category::View }, + { CreateFolder, "CreateFolder", QT_TRANSLATE_NOOP3("KStandardShortcut", "Create Folder", "@action"), Qt::Key_F10, 0, QList<QKeySequence>(), false, Category::File }, //dummy entry to catch simple off-by-one errors. Insert new entries before this line. { AccelNone, nullptr, {nullptr, nullptr}, 0, 0, QList<QKeySequence>(), false, Category::InvalidCategory } |