Skip to content

Commit c5fb0c5

Browse files
authored
Update main.py
Add developer infos .
1 parent ef1cfde commit c5fb0c5

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

main.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,16 @@ def initUI(self):
7070
self.output_text.setReadOnly(True)
7171
layout.addWidget(self.output_text)
7272

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+
7383
self.setLayout(layout)
7484

7585
# Print the selected user agent when the application starts

0 commit comments

Comments
 (0)