Skip to content

Commit e921e9e

Browse files
author
Tim Walsh
committed
Add exportall and resforks functionality to analysis
1 parent 6db5cfb commit e921e9e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

main.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,10 @@ def start_processing(self):
8787
else:
8888
if self.checkBox_2.isChecked():
8989
call.append("-k")
90+
if self.exportAllBtn.isChecked():
91+
call.append("-e")
92+
if self.resforksBtn.isChecked():
93+
call.append("-r")
9094
call.append(self.source1.text())
9195
call.append(self.destination1.text())
9296

0 commit comments

Comments
 (0)