Do not repeat keys for WinCE (problems with GAPI and virtual keyboard)

svn-id: r5251
This commit is contained in:
Nicolas Bacca 2002-10-22 22:35:07 +00:00
parent 3c2a409b11
commit c585fe7a37
2 changed files with 11 additions and 0 deletions

View file

@ -197,7 +197,14 @@ bool ListWidget::handleKeyDown(char key, int modifiers)
_scrollBar->draw();
}
#ifndef _WIN32_WCE
// not done on WinCE because keyboard is emulated and
// keyup is not generated
_currentKeyDown = key;
#endif
return handled;
}