示例#1
0
    def saveSettings(self):
        """
        Save the user settings to disc.

        :rtype: None
        """
        data = self.settings()
        studiolibrarymaya.saveSettings(data)
示例#2
0
 def saveSettings(self):
     """
     Save the user settings to disc.
     
     :rtype: None
     """
     data = self.settings()
     studiolibrarymaya.saveSettings(data)
示例#3
0
    def saveSettings(self):
        """
        Save the current state of the widget to disc.

        :rtype: None
        """
        data = self.settings()
        studiolibrarymaya.saveSettings(data)
示例#4
0
    def saveSettings(self):
        """
        Save the current state of the widget to disc.

        :rtype: None
        """
        state = self._formWidget.persistentValues()
        settings = studiolibrarymaya.settings()
        settings[self.item().__class__.__name__] = {"saveOptions": state}
        studiolibrarymaya.saveSettings(settings)
示例#5
0
    def saveSettings(self):
        """
        Save the current state of the widget to disc.

        :rtype: None
        """
        state = self._optionsWidget.optionsState()
        settings = studiolibrarymaya.settings()
        settings[self.item().__class__.__name__] = {"saveOptions": state}
        studiolibrarymaya.saveSettings(settings)
示例#6
0
    def optionsChanged(self, **options):
        """
        Triggered when the user changes the options.
        
        :type options: dict
        """
        settings = self.settings()
        settings[self.__class__.__name__] = {"options": options}

        self._currentOptions = options

        data = studiolibrarymaya.settings()
        studiolibrarymaya.saveSettings(data)
示例#7
0
    def optionsChanged(self, **options):
        """
        Triggered when the user changes the options.
        
        :type options: dict
        """
        settings = self.settings()
        settings[self.__class__.__name__] = {"loadOptions": options}

        self._currentLoadSchema = options

        data = studiolibrarymaya.settings()
        studiolibrarymaya.saveSettings(data)
示例#8
0
 def saveSettings(self):
     """
     :rtype: None
     """
     data = self.settings()
     studiolibrarymaya.saveSettings(data)