Update set_audio_sink and dhk

This commit is contained in:
2024-03-18 17:53:49 -04:00
parent a8b85f5bb9
commit cba8a15157
2 changed files with 2 additions and 4 deletions

View File

@ -62,7 +62,6 @@ class TabbedWindow(QMainWindow):
lines = file.readlines()
length = len(lines)
# Add the numbers 1-100 to the layout
column = 0
row = 0
switch = False
@ -100,7 +99,7 @@ class TabbedWindow(QMainWindow):
column -= 1
continue
else:
label = QLabel(lines[i].strip())
label = QLabel(lines[i].strip().lstrip("+").strip())
layout1.addWidget(label, row, column)
row += 1
@ -122,7 +121,6 @@ class TabbedWindow(QMainWindow):
lines = file.readlines()
length = len(lines)
# Add the numbers 101-200 to the layout
column = 0
row = 0
for i in range(length):