Changeset b6a6d87 in sasview for calculatorview
- Timestamp:
- Apr 29, 2013 9:40:16 AM (12 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, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 431896cf
- Parents:
- f234d3c
- Location:
- calculatorview/src/sans/perspectives/calculator
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
calculatorview/src/sans/perspectives/calculator/gen_scatter_panel.py
rf234d3c rb6a6d87 1802 1802 Init 1803 1803 """ 1804 if parent != None:1805 # set max size depending up on client size1806 wth, hgt = parent.get_client_size()1807 if hgt < size[1]:1808 size = (size[0], hgt)1809 if wth < size[0]:1810 size = (wth, size[1])1811 1804 kwds['size'] = size 1812 1805 kwds['title'] = title -
calculatorview/src/sans/perspectives/calculator/resolution_calculator_panel.py
rf234d3c rb6a6d87 1399 1399 title = "SANS Resolution Estimator", 1400 1400 size=(PANEL_WIDTH * 2, PANEL_HEIGHT), *args, **kwds): 1401 if parent != None:1402 # set max size depending up on client size1403 wth, hgt = parent.get_client_size()1404 if hgt < size[1]:1405 size = (size[0], hgt)1406 if wth < size[0]:1407 size = (wth, size[1])1408 1401 kwds['title'] = title 1409 1402 kwds['size'] = size
Note: See TracChangeset
for help on using the changeset viewer.