Don't update bar on every loop since we could be converting many files

This commit is contained in:
Cyberes 2023-11-11 11:35:49 -07:00
parent 47635635b5
commit 65d3daa057
1 changed files with 2 additions and 1 deletions

View File

@ -115,7 +115,8 @@ if __name__ == '__main__':
elif new_image == 'converted':
tiles.add((result_row, result_col))
converted_files += 1
update_bar_postfix()
# Don't update bar on every loop since we could be converting many files.
# update_bar_postfix()
col_bar.update()
row_bar.refresh()
col_bar.close()