| Summary: | Completion does not work with NumPad Keys | ||
|---|---|---|---|
| Product: | [Unmaintained] kdelibs | Reporter: | domseichter |
| Component: | general | Assignee: | Stephan Kulow <coolo> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | esigra |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | openSUSE | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
domseichter
2003-02-01 17:22:26 UTC
Subject: kdelibs/kdeui CVS commit by tokoe: Allow autocompletion when NumKey is on, otherwise you won't be able to work with Keypad. That fixes #53840 CCMAIL:53840-done@bugs.kde.org M +2 -1 klineedit.cpp 1.168 --- kdelibs/kdeui/klineedit.cpp #1.167:1.168 @@ -398,5 +398,6 @@ void KLineEdit::keyPressEvent( QKeyEvent KeyBindingMap keys = getKeyBindings(); KGlobalSettings::Completion mode = completionMode(); - bool noModifier = (e->state() == NoButton || e->state()== ShiftButton); + bool noModifier = (e->state() == NoButton || e->state() == ShiftButton + || e->state() == Keypad); if ( (mode == KGlobalSettings::CompletionAuto || |