Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Kate
Manage
Activity
Members
Labels
Plan
Issues
25
Issue boards
Milestones
Wiki
Bugzilla
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Utilities
Kate
Commits
2e1d843f
Commit
2e1d843f
authored
13 years ago
by
Dominik Haumann
Browse files
Options
Downloads
Patches
Plain Diff
fix ambiguous shortcuts with file browser
BUG: 236368
BUG: 188954
parent
d87b251c
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
kate/plugins/filebrowser/katefilebrowser.cpp
+11
-1
11 additions, 1 deletion
kate/plugins/filebrowser/katefilebrowser.cpp
with
11 additions
and
1 deletion
kate/plugins/filebrowser/katefilebrowser.cpp
+
11
−
1
View file @
2e1d843f
...
...
@@ -328,8 +328,18 @@ void KateFileBrowser::setupActions()
optionsMenu
->
addAction
(
m_autoSyncFolder
);
m_actionCollection
->
addAction
(
"configure"
,
optionsMenu
);
//
// Remove all shortcuts due to shortcut clashes (e.g. F5: reload, Ctrl+B: bookmark)
// BUGS: #188954, #236368
//
foreach
(
QAction
*
a
,
m_actionCollection
->
actions
())
{
a
->
setShortcut
(
QKeySequence
());
}
foreach
(
QAction
*
a
,
m_dirOperator
->
actionCollection
()
->
actions
())
{
a
->
setShortcut
(
QKeySequence
());
}
}
//END Protected
// kate: space-indent on; indent-width 2; replace-tabs on;
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment