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
Tobias Hunger
qt-creator
Commits
c2580c91
Commit
c2580c91
authored
Jun 23, 2010
by
hjk
Browse files
fakevim: fix '$' handling on Finnish keyboards
(cherry picked from commit
d2ea5a48
)
parent
4708e430
Changes
1
Show whitespace changes
Inline
Side-by-side
src/plugins/fakevim/fakevimhandler.cpp
View file @
c2580c91
...
...
@@ -389,7 +389,9 @@ public:
bool
is
(
int
c
)
const
{
return
m_xkey
==
c
&&
(
m_modifiers
==
0
||
m_modifiers
==
Qt
::
ShiftModifier
);
return
m_xkey
==
c
&&
(
m_modifiers
==
0
||
m_modifiers
==
Qt
::
ShiftModifier
||
m_modifiers
==
Qt
::
GroupSwitchModifier
);
}
bool
isControl
(
int
c
)
const
...
...
Write
Preview
Markdown
is supported
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