def create_config_menu(self):
     newwindow=Config_menu(self,config_dict=self.mainconf)
     #a reference to the window must be kept, otherwise the new window is immediately garbage collected !
     self.plotwindows.append(newwindow)
     newwindow.show()
Example #2
0
File: Main.py Project: vbanos/PyGMI
 def create_config_menu(self):
     newwindow = Config_menu(self, config_dict=self.mainconf)
     #a reference to the window must be kept, otherwise the new window is immediately garbage collected !
     self.plotwindows.append(newwindow)
     newwindow.show()
 def loaddefaultconfig(self):
     window = Config_menu(self,config_dict=self.mainconf)
     window.update_values()
Example #4
0
File: Main.py Project: vbanos/PyGMI
 def loaddefaultconfig(self):
     window = Config_menu(self, config_dict=self.mainconf)
     window.update_values()