Skip to content

Commit

Permalink
#2 made textbox read only
Browse files Browse the repository at this point in the history
  • Loading branch information
rohankishore committed Mar 4, 2024
1 parent 273c671 commit 65edd28
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions youtility/playlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ def __init__(self):
# Create a QListWidget to display downloading status
self.download_list_widget = ListWidget()
self.download_list_text = TextEdit()
self.download_list_text.setReadOnly(True)
self.count_layout.addWidget(self.download_list_widget)
self.count_layout.addWidget(self.download_list_text)
self.main_layout.addLayout(self.count_layout)
Expand Down

0 comments on commit 65edd28

Please sign in to comment.