- 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:
@@ -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])
|
||||
|
||||
Reference in New Issue
Block a user