Changeset 9f45f83 in sasview


Ignore:
Timestamp:
Oct 25, 2018 2:02:42 PM (5 years ago)
Author:
Jeff Krzywon <jkrzywon@…>
Branches:
master, magnetic_scatt, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249
Children:
dfcdbf8
Parents:
9fb4572
Message:

Fix backwards logic for dX values in data info window.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/sasgui/guiframe/gui_manager.py

    r845144e r9f45f83  
    25262526        text += '\nData Points:\n' 
    25272527        text += "<index> \t<X> \t<Y> \t<dY> " 
    2528         text += "\t<dX>\n" if(data.dxl is not None and 
    2529                               data.dxw is not None) else "\t<dXl> \t<dXw>\n" 
     2528        text += "\t<dXl> \t<dXw>\n" if(data.dxl is not None and 
     2529                                       data.dxw is not None) else "\t<dX>\n" 
    25302530        for index in range(len(data.x)): 
    25312531            if data.dy is not None and len(data.dy) > index: 
Note: See TracChangeset for help on using the changeset viewer.