Merge pull request #191 from kra-mo/use-arrow

window: Use proper arrow character
This commit is contained in:
Hugo Posnic 2023-11-03 17:56:36 +01:00 committed by GitHub
commit 9f5ef679fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -129,7 +129,7 @@ class CurtailWindow(Adw.ApplicationWindow):
result_item.error = error
if not error:
result_item.savings = str(round(100 - (result_item.new_size * 100 / result_item.size), 2)) + '%'
result_item.subtitle_label += ' -> ' + sizeof_fmt(result_item.new_size)
result_item.subtitle_label += ' ' + sizeof_fmt(result_item.new_size)
else:
result_item.subtitle_label = error_message