Ignore:
Timestamp:
Nov 27, 2018 6:03:12 AM (5 years ago)
Author:
Piotr Rozyczko <piotr.rozyczko@…>
Branches:
ESS_GUI, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
Children:
9d23e4c
Parents:
1b03c0a
Message:

Fixed item delete in Data Explorer.
Fixed parameter selection for array distributions.

File:
1 edited

Legend:

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

    re5ae812 rba8046c  
    15991599        while len(indices) > 0: 
    16001600            index = indices[0] 
    1601             #row_index = proxy.mapToSource(index) 
    1602             #item_to_delete = model.itemFromIndex(row_index) 
    1603             item_to_delete = model.itemFromIndex(index) 
     1601            row_index = proxy.mapToSource(index) 
     1602            item_to_delete = model.itemFromIndex(row_index) 
    16041603            if item_to_delete and item_to_delete.isCheckable(): 
    1605                 #row = row_index.row() 
    1606                 row = index.row() 
     1604                row = row_index.row() 
    16071605 
    16081606                # store the deleted item details so we can pass them on later 
Note: See TracChangeset for help on using the changeset viewer.