Update changelog, fix wrong os import

This commit is contained in:
Deniz Şafak
2025-10-19 16:15:32 +03:00
parent 1520b971ac
commit e69195e6ef
2 changed files with 3 additions and 1 deletions
+2 -1
View File
@@ -207,6 +207,8 @@ class QueueManager(QDialog):
def process_queue(self):
"""Process the queue items."""
import os
self.listwidget.clear()
if not self.queue:
self.empty_overlay.resize(self.listwidget.size())
@@ -227,7 +229,6 @@ class QueueManager(QDialog):
# Only show the file name, not the full path
display_name = display_file_path
import os
if os.path.sep in display_file_path:
display_name = os.path.basename(display_file_path)