mirror of
https://github.com/wh201906/Proxmark3GUI.git
synced 2024-11-10 08:55:43 +08:00
Fix a bug in RawCommand Tab
Not all of the keys should be redirected.
This commit is contained in:
parent
705c8de54c
commit
90e4fde882
1 changed files with 2 additions and 1 deletions
|
@ -273,7 +273,8 @@ void MainWindow::on_Raw_keyPressed(QObject* obj_addr, QEvent& event)
|
|||
}
|
||||
else if(obj_addr == ui->Raw_outputEdit)
|
||||
{
|
||||
ui->Raw_CMDEdit->setFocus();
|
||||
if(keyEvent.key() == Qt::Key_Up || keyEvent.key() == Qt::Key_Down)
|
||||
ui->Raw_CMDEdit->setFocus();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue