Changeset 1420066 in sasview for src/sas/qtgui/MainWindow/DataExplorer.py
- Timestamp:
- Oct 19, 2017 12:40:53 PM (7 years ago)
- Branches:
- ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
- Children:
- fca1f50
- Parents:
- 0c468bf
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/MainWindow/DataExplorer.py
rf0bb711 r1420066 281 281 # Use 'while' so the row count is forced at every iteration 282 282 deleted_indices = [] 283 #deleted_names = []283 deleted_names = [] 284 284 while ind < self.model.rowCount(): 285 285 ind += 1 … … 288 288 if item and item.isCheckable() and item.checkState() == QtCore.Qt.Checked: 289 289 # Delete these rows from the model 290 # deleted_names.append(self.model.item(ind).text())290 deleted_names.append(str(self.model.item(ind).text())) 291 291 deleted_indices.append(item) 292 292 … … 299 299 300 300 # update stored_data 301 # self.manager.delete_by_name(deleted_names) 302 301 self.manager.update_stored_data(deleted_names) 303 302 304 303 def deleteTheory(self, event):
Note: See TracChangeset
for help on using the changeset viewer.