the delete button is corrected
parent
fe9ac2d65c
commit
2d6c950dfe
|
|
@ -1374,7 +1374,7 @@ class AcousticDataTab(QWidget):
|
||||||
"stg.BS_raw_data_reshape", "stg.time_reshape", "stg.depth_reshape"]
|
"stg.BS_raw_data_reshape", "stg.time_reshape", "stg.depth_reshape"]
|
||||||
|
|
||||||
for p in list_to_pop1:
|
for p in list_to_pop1:
|
||||||
if isinstance(p, list):
|
if isinstance(eval(p), list):
|
||||||
exec(p + ".pop(current_row)")
|
exec(p + ".pop(current_row)")
|
||||||
|
|
||||||
if stg.BS_cross_section:
|
if stg.BS_cross_section:
|
||||||
|
|
@ -1477,7 +1477,7 @@ class AcousticDataTab(QWidget):
|
||||||
]
|
]
|
||||||
|
|
||||||
for k in list_to_clear:
|
for k in list_to_clear:
|
||||||
if isinstance(k, list):
|
if isinstance(eval(k), list):
|
||||||
exec(k + ".clear()")
|
exec(k + ".clear()")
|
||||||
|
|
||||||
self.fileListWidget.clear()
|
self.fileListWidget.clear()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue