예제 #1
0
    def apply_edit_changes(self):
        """Applies changes to the controls."""

        qtautoplugin.apply_edit_changes(self)
        # The duration field is enabled or disabled based on whether a custom
        # event handler is called or not.
        self.line_edit_duration.setEnabled(
            self.combobox_event_handler_trigger.currentIndex() == 0)
예제 #2
0
	def apply_edit_changes(self):
		
		"""Applies changes to the controls."""
		
		qtautoplugin.apply_edit_changes(self)
		# The duration field is enabled or disabled based on whether a custom
		# event handler is called or not.
		self.line_edit_duration.setEnabled( \
			self.combobox_event_handler_trigger.currentIndex() == 0)
예제 #3
0
    def apply_edit_changes(self):
        """Applies the controls."""

        if not qtautoplugin.apply_edit_changes(self) or self.lock:
            return False
        self.custom_interactions()
        return True
예제 #4
0
	def apply_edit_changes(self):

		"""Apply the controls"""

		if not qtautoplugin.apply_edit_changes(self) or self.lock:
			return False
		self.custom_interactions()
예제 #5
0
	def apply_edit_changes(self):

		"""
		desc:
			Applies the controls.
		"""

		if not qtautoplugin.apply_edit_changes(self) or self.lock:
			return False
		self.custom_interactions()
		return True
예제 #6
0
	def apply_edit_changes(self):

		"""Applies changes to the controls."""

		qtautoplugin.apply_edit_changes(self)
		self.update_controls()