mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-10 07:44:17 +02:00
restart is not required when changing enabled gems
This commit is contained in:
@@ -335,7 +335,7 @@ class AppsTable(QTableWidget):
|
||||
desc = '...'
|
||||
|
||||
if desc and desc != '...':
|
||||
desc = strip_html(desc[0:25]) + '...'
|
||||
desc = strip_html(desc[0:40]) + '...'
|
||||
|
||||
item.setText(desc)
|
||||
|
||||
@@ -359,9 +359,9 @@ class AppsTable(QTableWidget):
|
||||
|
||||
if not publisher:
|
||||
if not pkg.model.installed:
|
||||
item.setStyleSheet('QLabel { color: red; font-weight: bold}')
|
||||
item.setStyleSheet('QLabel { color: red; }')
|
||||
|
||||
publisher = '({})'.format(self.i18n['publisher.unknown'])
|
||||
publisher = self.i18n['unknown']
|
||||
|
||||
item.setText(' {} '.format(publisher))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user