Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
82153bf5
Commit
82153bf5
authored
May 29, 2009
by
mae
Browse files
fixed deletion of vertical block selection with Backspace key
parent
cd21181f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/texteditor/basetexteditor.cpp
View file @
82153bf5
...
...
@@ -850,7 +850,7 @@ void BaseTextEditor::keyPressEvent(QKeyEvent *e)
e
->
accept
();
return
;
}
}
else
if
(
e
==
QKeySequence
::
Delete
)
{
}
else
if
(
e
==
QKeySequence
::
Delete
||
e
->
key
()
==
Qt
::
Key_Backspace
)
{
if
(
!
ro
)
{
d
->
removeBlockSelection
();
e
->
accept
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment