Skip to content

Commit

Permalink
Fix text color
Browse files Browse the repository at this point in the history
  • Loading branch information
dridk committed Jun 30, 2022
1 parent 7a391de commit 9b12f3e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions cutevariant/gui/widgets/splashscreen.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ def paintEvent(self, event: QPaintEvent):
message = "Chargement ... "
rect = painter.fontMetrics().boundingRect(message)
rect.moveCenter(QPoint(self.rect().center().x(), self.rect().center().y() + 60))
painter.setPen(QPen(QColor("white")))
painter.drawText(rect, Qt.AlignCenter, message)

message = f"Version {QApplication.applicationVersion()}"
Expand Down

0 comments on commit 9b12f3e

Please sign in to comment.