From 1e03083652502a653ccc7dc6d27fe0fcbe218502 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20Moreira?= Date: Wed, 20 May 2020 12:22:49 -0300 Subject: [PATCH] [improvement][ui] changing the upgrade summary size style --- CHANGELOG.md | 2 ++ bauh/view/qt/thread.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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,