fakevim: next attempt at fixing QTCREATORBUG-1263

AltGr + 4 on Swedish keyboards on Vista
This commit is contained in:
hjk
2010-09-30 11:58:22 +02:00
parent 18688c9a23
commit a75758f082

View File

@@ -400,9 +400,7 @@ public:
bool is(int c) const
{
return m_xkey == c && (m_modifiers == 0
|| m_modifiers == Qt::ShiftModifier
|| m_modifiers == Qt::GroupSwitchModifier);
return m_xkey == c && m_modifiers != Qt::ControlModifier;
}
bool isControl(int c) const