mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-16 16:14:47 -04:00
Implement custom LZMA dictionary size for NE
This commit is contained in:
parent
f074dfc5ca
commit
be2cdc7dfe
8 changed files with 124 additions and 104 deletions
|
@ -296,11 +296,13 @@ void TreeModel::setFixed(const UModelIndex &index, const bool fixed)
|
|||
return;
|
||||
|
||||
if (fixed) {
|
||||
// Special handling for uncompressed to compressed boundary
|
||||
if (item->compressed() && item->parent()->compressed() == FALSE) {
|
||||
item->setFixed(item->parent()->fixed());
|
||||
return;
|
||||
}
|
||||
|
||||
// Propagate fixed flag until root
|
||||
if (item->parent()->type() != Types::Root)
|
||||
item->parent()->setFixed(fixed);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue