AudreyBeard / compressure

4 stars 1 forks source link

[GUI] show progress bar for slicing operations #30

Open AudreyBeard opened 1 year ago

AudreyBeard commented 1 year ago

Slicing is one of the longer processes of the compressure system. They CLI has a progress bar with tqdm, but it would be nice if the GUI had one too

AudreyBeard commented 1 year ago

Related to #29

hardikajmani commented 1 year ago

@AudreyBeard We cannot provide in-sync (live) progress as the slicing process freezes the UI. That is, the user cannot see it progressing. We need to run the slicing operation under QThread to avoid UI freezing. Can you make a new issue regarding that?