Changeset dcd534e in sasview for src/sas/sasgui/perspectives/fitting
- Timestamp:
- Dec 5, 2017 8:55:39 AM (7 years ago)
- Children:
- 163c3e0
- Parents:
- 814ee32 (diff), 79c9ce5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Location:
- src/sas/sasgui/perspectives/fitting
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sasgui/perspectives/fitting/basepage.py
r3bd677b reee94bf 1643 1643 if item_page[2].__class__.__name__ == "ComboBox": 1644 1644 if item_page_info[2] in self.model.fun_list: 1645 fun_val = self.model.fun_list [item_page_info[2]]1645 fun_val = self.model.fun_list.index(item_page_info[2]) 1646 1646 self.model.setParam(item_page_info[1], fun_val) 1647 1647 if item_page[3] is not None: … … 1687 1687 selection = value 1688 1688 if value in self.model.fun_list: 1689 selection = self.model.fun_list [value]1689 selection = self.model.fun_list.index(value) 1690 1690 item_page[2].SetValue(selection) 1691 1691 self.model.setParam(param_name, selection) … … 3365 3365 if item[2].__class__.__name__ == "ComboBox": 3366 3366 if content[name][1] in self.model.fun_list: 3367 fun_val = self.model.fun_list [content[name][1]]3367 fun_val = self.model.fun_list.index(content[name][1]) 3368 3368 self.model.setParam(name, fun_val) 3369 3369 try: … … 3415 3415 if item[2].__class__.__name__ == "ComboBox": 3416 3416 if value[0] in self.model.fun_list: 3417 fun_val = self.model.fun_list [value[0]]3417 fun_val = self.model.fun_list.index(value[0]) 3418 3418 self.model.setParam(name, fun_val) 3419 3419 # save state -
src/sas/sasgui/perspectives/fitting/fitpage.py
r3bd677b rbfeb823 1726 1726 and not self.temp_multi_functional: 1727 1727 return None 1728 # Get the func name list 1729 list = self.model.fun_list 1730 if len(list) == 0: 1731 return None 1732 # build function (combo)box 1733 ind = 0 1734 while(ind < len(list)): 1735 for key, val in list.items(): 1736 if val == ind: 1737 fun_box.Append(key, val) 1738 break 1739 ind += 1 1728 for index, choice in enumerate(self.model.fun_list): 1729 fun_box.Append(choice, index) 1740 1730 1741 1731 def _on_select_accuracy(self, event): … … 1765 1755 value = fun_box.GetValue() 1766 1756 if value in self.model.fun_list: 1767 fun_val = self.model.fun_list [value]1757 fun_val = self.model.fun_list.index(value) 1768 1758 1769 1759 self.model.setParam(name, fun_val)
Note: See TracChangeset
for help on using the changeset viewer.