diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ddb8bba..b27a1a21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - i18n - AppImage - Categories are now translated on the Info window + +- minor UI changes ### Fixes - Flatpak diff --git a/bauh/view/qt/thread.py b/bauh/view/qt/thread.py index d107602f..3066802a 100644 --- a/bauh/view/qt/thread.py +++ b/bauh/view/qt/thread.py @@ -407,7 +407,7 @@ class UpgradeSelected(AsyncAction): extra_size_text = '{}: {}'.format(self.i18n['action.update.total_size'].capitalize(), get_human_size_str(extra_size)) req_size_text = '{}: {}'.format(self.i18n['action.update.required_size'].capitalize(), get_human_size_str(required_size)) - comps.insert(0, TextComponent(bold('{} | {}').format(extra_size_text, req_size_text), size=14)) + comps.insert(0, TextComponent('{} | {}'.format(extra_size_text, req_size_text), size=14)) comps.insert(1, TextComponent('')) if not self.request_confirmation(title=self.i18n['action.update.summary'].capitalize(), body='', components=comps,