mirror of
https://github.com/wh201906/Proxmark3GUI.git
synced 2025-02-17 06:31:33 +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
@ -273,7 +273,8 @@ void MainWindow::on_Raw_keyPressed(QObject* obj_addr, QEvent& event)
|
|||||||
}
|
}
|
||||||
else if(obj_addr == ui->Raw_outputEdit)
|
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…
x
Reference in New Issue
Block a user