Ignore:
Timestamp:
Oct 19, 2017 8:25:24 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:
0c468bf
Parents:
d5c5d3d
Message:

Implemented comments from review for Data Operation Panel (ESS-GUI-SasView?-245)

File:
1 edited

Legend:

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

    rd5c5d3d rf0bb711  
    281281        # Use 'while' so the row count is forced at every iteration 
    282282        deleted_indices = [] 
     283        # deleted_names = [] 
    283284        while ind < self.model.rowCount(): 
    284285            ind += 1 
    285286            item = self.model.item(ind) 
     287 
    286288            if item and item.isCheckable() and item.checkState() == QtCore.Qt.Checked: 
    287289                # Delete these rows from the model 
     290                # deleted_names.append(self.model.item(ind).text()) 
    288291                deleted_indices.append(item) 
     292 
    289293                self.model.removeRow(ind) 
    290294                # Decrement index since we just deleted it 
     
    293297        # Let others know we deleted data 
    294298        self.communicator.dataDeletedSignal.emit(deleted_indices) 
     299 
     300        # update stored_data 
     301        # self.manager.delete_by_name(deleted_names) 
     302 
    295303 
    296304    def deleteTheory(self, event): 
Note: See TracChangeset for help on using the changeset viewer.