summaryrefslogtreecommitdiff
path: root/kde-frameworks/ktexteditor/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2019-08-02 19:14:55 +0100
committerV3n3RiX <venerix@redcorelinux.org>2019-08-02 19:14:55 +0100
commitb24bd25253fe093f722ab576d29fdc41d04cb1ee (patch)
tree0fcf2afd9f852c4d4c291cf8afaa2c244d598105 /kde-frameworks/ktexteditor/files
parent121ed4eec41fbf03e1998d09eede1bf449da63b9 (diff)
gentoo resync : 02.08.2019
Diffstat (limited to 'kde-frameworks/ktexteditor/files')
-rw-r--r--kde-frameworks/ktexteditor/files/ktexteditor-5.57.0-shortcuts.patch54
1 files changed, 0 insertions, 54 deletions
diff --git a/kde-frameworks/ktexteditor/files/ktexteditor-5.57.0-shortcuts.patch b/kde-frameworks/ktexteditor/files/ktexteditor-5.57.0-shortcuts.patch
deleted file mode 100644
index 2f979d681227..000000000000
--- a/kde-frameworks/ktexteditor/files/ktexteditor-5.57.0-shortcuts.patch
+++ /dev/null
@@ -1,54 +0,0 @@
-From 9f2ffd36c5873f4d2645f07129ead7970871808c Mon Sep 17 00:00:00 2001
-From: Christoph Cullmann <cullmann@kde.org>
-Date: Sun, 14 Apr 2019 14:38:31 +0200
-Subject: avoid conflicting shortcuts for switching tabs
-
-Summary: use ALT + Home/End for top/bottom of view
-
-Subscribers: kwrite-devel, kde-frameworks-devel
-
-Tags: #kate, #frameworks
-
-Differential Revision: https://phabricator.kde.org/D20534
----
- src/view/kateview.cpp | 8 ++++----
- 1 file changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/src/view/kateview.cpp b/src/view/kateview.cpp
-index 7220d26..55457c7 100644
---- a/src/view/kateview.cpp
-+++ b/src/view/kateview.cpp
-@@ -1046,13 +1046,13 @@ void KTextEditor::ViewPrivate::setupEditActions()
-
- a = ac->addAction(QStringLiteral("move_top_of_view"));
- a->setText(i18n("Move to Top of View"));
-- ac->setDefaultShortcut(a, QKeySequence(Qt::CTRL + Qt::Key_PageUp));
-+ ac->setDefaultShortcut(a, QKeySequence(Qt::ALT + Qt::Key_Home));
- connect(a, SIGNAL(triggered(bool)), SLOT(topOfView()));
- m_editActions << a;
-
- a = ac->addAction(QStringLiteral("select_top_of_view"));
- a->setText(i18n("Select to Top of View"));
-- ac->setDefaultShortcut(a, QKeySequence(Qt::CTRL + Qt::SHIFT + Qt::Key_PageUp));
-+ ac->setDefaultShortcut(a, QKeySequence(Qt::ALT + Qt::SHIFT + Qt::Key_Home));
- connect(a, SIGNAL(triggered(bool)), SLOT(shiftTopOfView()));
- m_editActions << a;
-
-@@ -1070,13 +1070,13 @@ void KTextEditor::ViewPrivate::setupEditActions()
-
- a = ac->addAction(QStringLiteral("move_bottom_of_view"));
- a->setText(i18n("Move to Bottom of View"));
-- ac->setDefaultShortcut(a, QKeySequence(Qt::CTRL + Qt::Key_PageDown));
-+ ac->setDefaultShortcut(a, QKeySequence(Qt::ALT + Qt::Key_End));
- connect(a, SIGNAL(triggered(bool)), SLOT(bottomOfView()));
- m_editActions << a;
-
- a = ac->addAction(QStringLiteral("select_bottom_of_view"));
- a->setText(i18n("Select to Bottom of View"));
-- ac->setDefaultShortcut(a, QKeySequence(Qt::CTRL + Qt::SHIFT + Qt::Key_PageDown));
-+ ac->setDefaultShortcut(a, QKeySequence(Qt::ALT + Qt::SHIFT + Qt::Key_End));
- connect(a, SIGNAL(triggered(bool)), SLOT(shiftBottomOfView()));
- m_editActions << a;
-
---
-cgit v1.1