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

Disable read all checkbox for RT130 channels

parent 3606016b
No related branches found
No related tags found
No related merge requests found
...@@ -98,6 +98,8 @@ class ChannelDialog(UiDBInfoDialog): ...@@ -98,6 +98,8 @@ class ChannelDialog(UiDBInfoDialog):
lambda check_state: lambda check_state:
self.on_checkbox_toggle(bool(check_state.value), checkbox) self.on_checkbox_toggle(bool(check_state.value), checkbox)
) )
if self.data_type == 'RT130':
checkbox.setDisabled(True)
self.data_table_widget.setCellWidget(row_idx, col_idx, checkbox) self.data_table_widget.setCellWidget(row_idx, col_idx, checkbox)
return 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