diff options
author | q5sys <jt@xsystems.com> | 2017-10-25 09:25:44 -0400 |
---|---|---|
committer | q5sys <jt@xsystems.com> | 2017-10-25 09:25:44 -0400 |
commit | e72b4cfb324f8c8bb5aebc9382f2344c6ccb6705 (patch) | |
tree | 6233ccc424d3359a1ff23795a4ad2ca1f5071fb6 /src-qt5/desktop-utils | |
parent | add extraction method for custom path (diff) | |
download | lumina-e72b4cfb324f8c8bb5aebc9382f2344c6ccb6705.tar.gz lumina-e72b4cfb324f8c8bb5aebc9382f2344c6ccb6705.tar.bz2 lumina-e72b4cfb324f8c8bb5aebc9382f2344c6ccb6705.zip |
fixed handling of initial arguments
Diffstat (limited to 'src-qt5/desktop-utils')
-rw-r--r-- | src-qt5/desktop-utils/lumina-archiver/MainUI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/desktop-utils/lumina-archiver/MainUI.cpp b/src-qt5/desktop-utils/lumina-archiver/MainUI.cpp index 20534569..c4b35474 100644 --- a/src-qt5/desktop-utils/lumina-archiver/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-archiver/MainUI.cpp @@ -101,7 +101,7 @@ void MainUI::LoadArguments(QStringList args){ connect(BACKEND, SIGNAL(ArchivalSuccessful()), delayClose, SLOT(start()) ); }else if(action==3){ sxList.clear(); - for(int j=1; j<files.length(); j++){ sxList << files[j]; } + for(int j=0; j<files.length(); j++){ sxList << files[j]; } for(int k=0; k<sxList.length(); k++){ if(k==0){ sxFile = sxList[k]; } if(k==1){ sxPath = sxList[k]; } |