Changeset e11ee1d in sasview for src/sas/sasgui/guiframe
- Timestamp:
- Mar 25, 2017 6:53:34 PM (8 years ago)
- 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:
- bea35f5, f9d1f60
- Parents:
- d8161f2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sasgui/guiframe/acknowledgebox.py
rd8161f2 re11ee1d 37 37 Shows the current method for acknowledging SasView in 38 38 scholarly publications. 39 40 39 """ 41 40 … … 55 54 config._acknowledgement_preamble_bullet3, 56 55 config._acknowledgement_preamble_bullet4] 57 self.list1 = wx.StaticText(self, -1, " \t(1) " + items[0])58 self.list2 = wx.StaticText(self, -1, " \t(2) " + items[1])59 self.list3 = wx.StaticText(self, -1, " \t(3) " + items[2])60 self.list4 = wx.StaticText(self, -1, " \t(4) " + items[3])56 self.list1 = wx.StaticText(self, -1, "(1) " + items[0]) 57 self.list2 = wx.StaticText(self, -1, "(2) " + items[1]) 58 self.list3 = wx.StaticText(self, -1, "(3) " + items[2]) 59 self.list4 = wx.StaticText(self, -1, "(4) " + items[3]) 61 60 self.static_line = wx.StaticLine(self, 0) 62 61 self.__set_properties() … … 72 71 self.SetTitle("Acknowledging SasView") 73 72 #Increased size of box from (525, 225), SMK, 04/10/16 74 self.SetSize((600, 3 00))73 self.SetSize((600, 320)) 75 74 # end wxGlade 76 75
Note: See TracChangeset
for help on using the changeset viewer.