Changeset a0ed202 in sasview
- Timestamp:
- May 18, 2018 3:13:33 AM (7 years ago)
- Branches:
- ESS_GUI, 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:
- d3ee425
- Parents:
- b10cf92
- git-author:
- Piotr Rozyczko <rozyczko@…> (05/18/18 03:11:38)
- git-committer:
- Piotr Rozyczko <rozyczko@…> (05/18/18 03:13:33)
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
installers/sasview_qt5.spec
raefde77 ra0ed202 43 43 datas = [('../src/sas/sasview/images', 'images')] 44 44 45 datas = [('../src/sas/sasview/images/ball.png', '.')] 46 45 47 datas.append(('../src/sas/sasview/media','media')) 46 48 datas.append(('../src/sas/sasview/test','test')) … … 49 51 datas.append(('../src/sas/sasview/wxcruft.py','.')) 50 52 datas.append(('../src/sas/logger_config.py','.')) 53 datas.append(('../src/sas/logging.ini','.')) 51 54 52 55 # pyinstaller gets mightily confused by upper/lower case, … … 120 123 'logging', 121 124 'logging.config', 125 'reportlab', 'reportlab.graphics', 126 'reportlab.graphics.barcode.common', 127 'reportlab.graphics.barcode.code128', 128 'reportlab.graphics.barcode.code93', 129 'reportlab.graphics.barcode.code39', 130 'reportlab.graphics.barcode.lto', 131 'reportlab.graphics.barcode.qr', 132 'reportlab.graphics.barcode.usps', 133 'reportlab.graphics.barcode.usps4s', 134 'reportlab.graphics.barcode.eanbc', 135 'reportlab.graphics.barcode.ecc200datamatrix', 136 'reportlab.graphics.barcode.fourstate', 122 137 'ipykernel', 'ipykernel.datapub', 123 138 'pygments', 'pygments.lexers','pygments.lexers.python', -
src/sas/qtgui/MainWindow/GuiManager.py
r57be490 ra0ed202 137 137 self.welcomePanel = WelcomePanel() 138 138 self.grid_window = None 139 self._workspace.toolBar.setVisible(LocalConfig.TOOLBAR_SHOW) 140 self._workspace.actionHide_Toolbar.setText("Show Toolbar") 139 141 140 142 # Add calculators - floating for usability -
src/sas/qtgui/Utilities/LocalConfig.py
rd4dac80 ra0ed202 129 129 WELCOME_PANEL_SHOW = False 130 130 #Show or hide toolbar at the start up 131 TOOLBAR_SHOW = True131 TOOLBAR_SHOW = False 132 132 # set a default perspective 133 133 DEFAULT_PERSPECTIVE = 'None'
Note: See TracChangeset
for help on using the changeset viewer.