Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
marticliment committed Nov 8, 2021
1 parent 5b76b3d commit f7192df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion elevenclock/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1371,7 +1371,7 @@ def restartElevenClockByLangChange():
self.PichonButton.clicked.connect(lambda: os.startfile("https://icons8.com/"))
self.PichonButton.setStyleSheet("QWidget#stBtn{border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-bottom: 0px;}")
layout.addWidget(self.PichonButton)
self.QtButton = QSettingsButton(_("About Qt6 (PySide6)"), _("About"))
self.QtButton = QSettingsButton(_("About Qt6 (PySide6)").replace("Qt6", "Qt5").replace("PySide6", "PySide2"), _("About"))
self.QtButton.clicked.connect(lambda: QMessageBox.aboutQt(self, "ElevenClock - About Qt"))
self.QtButton.setStyleSheet("QWidget#stBtn{border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-bottom: 0px;}")
layout.addWidget(self.QtButton)
Expand Down

0 comments on commit f7192df

Please sign in to comment.