Skip to content
Snippets Groups Projects
Commit 74e96200 authored by Kien Le's avatar Kien Le
Browse files

Disable read all checkbox for seismic channels

parent 8b32d733
No related branches found
No related tags found
No related merge requests found
......@@ -89,6 +89,8 @@ class ChannelDialog(UiDBInfoDialog):
:param col_idx: the column to insert the checkbox into
:return the created checkbox widget
"""
row_channel = (self.database_rows[row_idx][0]
if row_idx < len(self.database_rows) else '')
checked = (self.database_rows[row_idx][col_idx - 1]
if row_idx < len(self.database_rows) else False)
checkbox = CenteredCheckBox(self.data_table_widget)
......@@ -100,6 +102,8 @@ class ChannelDialog(UiDBInfoDialog):
)
if self.data_type == 'RT130':
checkbox.setDisabled(True)
if row_channel == 'SEISMIC':
checkbox.setDisabled(True)
self.data_table_widget.setCellWidget(row_idx, col_idx, checkbox)
return checkbox
......
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