From 65edd28488eae83ffe18e5816d12e2de01eb69e7 Mon Sep 17 00:00:00 2001 From: Rohan Kishore <109947257+rohankishore@users.noreply.github.com> Date: Tue, 5 Mar 2024 01:05:10 +0530 Subject: [PATCH] #2 made textbox read only --- youtility/playlist.py | 1 + 1 file changed, 1 insertion(+) diff --git a/youtility/playlist.py b/youtility/playlist.py index dc1c800..e1e7226 100644 --- a/youtility/playlist.py +++ b/youtility/playlist.py @@ -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)