We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef1cfde commit c5fb0c5Copy full SHA for c5fb0c5
main.py
@@ -70,6 +70,16 @@ def initUI(self):
70
self.output_text.setReadOnly(True)
71
layout.addWidget(self.output_text)
72
73
+ # Developer information
74
+ developer_info = """
75
+ <p>This app developed by Zied Boughdir 2024.</p>
76
+ <p>GitHub link: <a href='https://github.com/zinzied'>https://github.com/zinzied</a></p>
77
+ """
78
+ self.developer_label = QtWidgets.QLabel()
79
+ self.developer_label.setTextFormat(QtCore.Qt.RichText)
80
+ self.developer_label.setText(developer_info)
81
+ layout.addWidget(self.developer_label)
82
+
83
self.setLayout(layout)
84
85
# Print the selected user agent when the application starts
0 commit comments