Preferences/ViewProfileDialog.py

changeset 6891
93f82da09f22
parent 6645
ad476851d7e0
equal deleted inserted replaced
6890:26c1042f2eec 6891:93f82da09f22
61 def getVisibilities(self): 61 def getVisibilities(self):
62 """ 62 """
63 Public method to retrieve the visibilities configuration. 63 Public method to retrieve the visibilities configuration.
64 64
65 @return tuple of two lists giving the visibilities of the 65 @return tuple of two lists giving the visibilities of the
66 various parts ( two lists of boolean) 66 various parts (two lists of boolean)
67 """ 67 """
68 if self.__layout in ["Toolboxes", "Sidebars"]: 68 if self.__layout in ["Toolboxes", "Sidebars"]:
69 return ( 69 return (
70 # edit profile 70 # edit profile
71 [ 71 [
78 self.ui.dpltCheckBox.isChecked(), 78 self.ui.dpltCheckBox.isChecked(),
79 self.ui.dphtCheckBox.isChecked(), 79 self.ui.dphtCheckBox.isChecked(),
80 self.ui.dprtCheckBox.isChecked(), 80 self.ui.dprtCheckBox.isChecked(),
81 ] 81 ]
82 ) 82 )
83
84 return (
85 [True, True, True], # edit profile
86 [True, True, True], # debug profile
87 )

eric ide

mercurial