removed symbols from shift/scale, combobox in fitparameter respects sizehint
This commit is contained in:
@ -183,7 +183,12 @@ class QAsciiReader(QtWidgets.QDialog, Ui_ascii_reader):
|
||||
|
||||
col_header = None
|
||||
if self.column_checkBox.isChecked():
|
||||
col_header = [self.ascii_table.horizontalHeaderItem(i).text() for i in range(self.ascii_table.columnCount())]
|
||||
col_header = []
|
||||
for i in range(self.ascii_table.columnCount()):
|
||||
if self.ascii_table.horizontalHeaderItem(i) is not None:
|
||||
col_header.append(self.ascii_table.horizontalHeaderItem(i).text())
|
||||
else:
|
||||
col_header.append(i)
|
||||
|
||||
if y is not None and col_header is not None:
|
||||
col_header = [col_header[i] for i in range(len(col_header)) if i in y]
|
||||
|
Reference in New Issue
Block a user