Changeset 91807fc in sasview for src/sas/sasgui


Ignore:
Timestamp:
Jul 20, 2016 10:00:16 AM (8 years ago)
Author:
lewis
Branches:
master, 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, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
503cc34
Parents:
072b52c
git-author:
Lewis O'Driscoll <lewis.o'driscoll@…> (07/20/16 09:29:48)
git-committer:
Lewis O'Driscoll <lewis.o'driscoll@…> (07/20/16 10:00:16)
Message:

Remove redundant sample ID input

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/sasgui/perspectives/file_converter/meta_panels.py

    r55775e8 r91807fc  
    214214        y += 1 
    215215 
    216         id_label = wx.StaticText(self, -1, "ID: ") 
    217         input_grid.Add(id_label, (y,0), (1,1), wx.ALL, 5) 
    218         id_input = wx.TextCtrl(self, -1, name="ID") 
    219         input_grid.Add(id_input, (y,1), (1,1)) 
    220         id_input.Bind(wx.EVT_TEXT, self.on_change) 
    221         y += 1 
    222  
    223216        thickness_label = wx.StaticText(self, -1, "Thickness (mm): ") 
    224217        input_grid.Add(thickness_label, (y,0), (1,1), wx.ALL, 5) 
     
    274267 
    275268        name_input.SetValue(self.metadata.name) 
    276         id_input.SetValue(self.get_property_string("ID")) 
    277269        thickness_input.SetValue( 
    278270            self.get_property_string("thickness", is_float=True)) 
Note: See TracChangeset for help on using the changeset viewer.