This commit is contained in:
Vinicius Moreira
2019-07-01 11:07:50 -03:00
parent da00eacd1f
commit 7ac23ef7df
16 changed files with 977 additions and 102 deletions

View File

@@ -18,7 +18,7 @@ class AboutDialog(QDialog):
self.setLayout(layout)
label_logo = QLabel(self)
label_logo.setPixmap(QPixmap(resource.get_path('img/flathub_45.svg')))
label_logo.setPixmap(QPixmap(resource.get_path('img/logo.svg')))
label_logo.setAlignment(Qt.AlignCenter)
layout.addWidget(label_logo)
@@ -27,13 +27,6 @@ class AboutDialog(QDialog):
label_name.setAlignment(Qt.AlignCenter)
layout.addWidget(label_name)
label_flathub = QLabel()
label_flathub.setStyleSheet('font-size: 7px; color: red; font-weight: bold;')
label_flathub.setText('* logo by Flathub (' + " <a href='{url}'>{url}</a> )".format(url='https://flathub.org'))
label_flathub.setOpenExternalLinks(True)
label_flathub.setAlignment(Qt.AlignRight)
layout.addWidget(label_flathub)
layout.addWidget(QLabel(''))
line_desc = QLabel(self)