- replaced all the FCLabel widgets that have color HTML with the new FCLabel widget that uses parameters for 'color' and weight

This commit is contained in:
Marius Stanciu
2022-04-18 03:41:04 +03:00
committed by Marius
parent 04357843fe
commit d8a0be84a3
79 changed files with 263 additions and 264 deletions

View File

@@ -3677,8 +3677,7 @@ class App(QtCore.QObject):
line = 1
for i in translators:
self.translator_grid_lay.addWidget(
FCLabel('<span style="color:blue">%s</span>' % i['language']), line, 0)
self.translator_grid_lay.addWidget(FCLabel('%s' % i['language'], color='blue', bold=False), line, 0)
for author in range(len(i['authors'])):
auth_widget = FCLabel('%s' % i['authors'][author][0])
email_widget = FCLabel('%s' % i['authors'][author][1])