Ignore:
Timestamp:
Oct 19, 2017 10:40:53 AM (7 years ago)
Author:
celinedurniak <celine.durniak@…>
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
Message:

Corrected problem with update of loaded files in Data Operation Panel (ESS-GUI-SasView245)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/MainWindow/DataExplorer.py

    rf0bb711 r1420066  
    281281        # Use 'while' so the row count is forced at every iteration 
    282282        deleted_indices = [] 
    283         # deleted_names = [] 
     283        deleted_names = [] 
    284284        while ind < self.model.rowCount(): 
    285285            ind += 1 
     
    288288            if item and item.isCheckable() and item.checkState() == QtCore.Qt.Checked: 
    289289                # 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())) 
    291291                deleted_indices.append(item) 
    292292 
     
    299299 
    300300        # update stored_data 
    301         # self.manager.delete_by_name(deleted_names) 
    302  
     301        self.manager.update_stored_data(deleted_names) 
    303302 
    304303    def deleteTheory(self, event): 
Note: See TracChangeset for help on using the changeset viewer.