Skip to content
Snippets Groups Projects
Commit 23e72515 authored by Destiny Kuehn's avatar Destiny Kuehn
Browse files

fix label alignment

parent 971553ea
No related branches found
No related tags found
1 merge request!19Fix to clear loc codes issue
Pipeline #3155 passed with stage
in 2 minutes
......@@ -1053,8 +1053,8 @@ class MainWindow(QWidget):
headers_l = QLabel("For Headers Matching:")
subvals_l = QLabel("Substitute Values:")
grid.addWidget(headers_l, 0, 1, alignment=Qt.AlignLeft)
grid.addWidget(subvals_l, 0, 2, alignment=Qt.AlignLeft)
grid.addWidget(headers_l, 0, 2, alignment=Qt.AlignLeft)
grid.addWidget(subvals_l, 0, 3, alignment=Qt.AlignLeft)
r = 1
c = 1
for val in self.GlobalListVars:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment