Fix character sequences produced by <Ctrl/Alt/Ctrl+Alt> + <Left Arrow/Right Arrow> key inputs. Implement support for wild card '*' characters in the result string for keyboard translator entries.

svn path=/trunk/KDE/kdebase/apps/konsole/; revision=743477
This commit is contained in:
Robert Knight
2007-12-01 03:25:14 +00:00
parent 94594b309c
commit 645d82ec1e
4 changed files with 55 additions and 11 deletions

View File

@@ -130,7 +130,7 @@ bool KeyBindingEditor::eventFilter( QObject* watched , QEvent* event )
if ( !entry.isNull() )
{
_ui->testAreaInputEdit->setText(entry.conditionToString());
_ui->testAreaOutputEdit->setText(entry.resultToString());
_ui->testAreaOutputEdit->setText(entry.resultToString(true,keyEvent->modifiers()));
}
else
{