Skip to content

Commit

Permalink
fix: Optimize annotations
Browse files Browse the repository at this point in the history
Optimize annotations

Log: Optimize annotations
  • Loading branch information
myk1343 authored and deepin-bot[bot] committed Dec 11, 2023
1 parent 6b7c5de commit 2e4ab16
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions 3rdparty/interface/archiveinterface/cliinterface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -197,10 +197,9 @@ PluginFinishType CliInterface::extractFiles(const QList<FileEntry> &files, const
} else {
password = options.password;
}
//长文件解压
ArchiveData arcData = DataManager::get_instance().archiveData();
if(!bDlnfs) {
if(arcData.listRootEntry.isEmpty() && options.qSize < FILE_MAX_SIZE) { //对于长文件解压,压缩包小于10M,右键解压支持,先获取文件列表,再根据列表数据判断是否为长文件,以后应用加开关表明是否为唱文件解压
if(arcData.listRootEntry.isEmpty() && options.qSize < FILE_MAX_SIZE) {
setProperty("list", "tmpList");
list();
if(m_process) {
Expand Down

0 comments on commit 2e4ab16

Please sign in to comment.