mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-14 23:24:49 -04:00
NE Alpha 33
- human readable JEDEC ID - NVRAM parser separated from FFS parser - added support for LZMAF86 sections - solved a bug with parsing of VSS variables with invalid sizes
This commit is contained in:
parent
434a350819
commit
cb430456bf
35 changed files with 2282 additions and 1994 deletions
|
@ -676,8 +676,10 @@ void QHexEdit::keyPressEvent(QKeyEvent *event)
|
|||
if (event->matches(QKeySequence::Copy))
|
||||
{
|
||||
QByteArray ba = _chunks->data(getSelectionBegin(), getSelectionEnd() - getSelectionBegin()).toHex();
|
||||
for (qint64 idx = 32; idx < ba.size(); idx +=33)
|
||||
for (qint64 idx = 32; idx < ba.size(); idx += 33)
|
||||
ba.insert(idx, "\n");
|
||||
if(_upperCase)
|
||||
ba = ba.toUpper();
|
||||
QClipboard *clipboard = QApplication::clipboard();
|
||||
clipboard->setText(ba);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue