Example #1
0
    def apply_edit_changes(self):
        """See qtitem."""

        qtplugin.apply_edit_changes(self)
        sp = self.qprogedit.text(index=0)
        sr = self.qprogedit.text(index=1)
        self.var._prepare = sp
        self.var._run = sr
        self.update_item_icon()
Example #2
0
	def apply_edit_changes(self):

		"""See qtitem."""

		qtplugin.apply_edit_changes(self)
		sp = self.qprogedit.text(index=0)
		sr = self.qprogedit.text(index=1)
		self.var._prepare = sp
		self.var._run = sr
		self.update_item_icon()
Example #3
0
	def apply_edit_changes(self):

		"""Applies the controls. I.e. sets the variables from the controls."""

		if not qtplugin.apply_edit_changes(self, False) or self.lock:
			return False
		return True
Example #4
0
    def apply_edit_changes(self):
        """Applies the controls. I.e. sets the variables from the controls."""

        if not qtplugin.apply_edit_changes(self, False) or self.lock:
            return False
        self.experiment.main_window.refresh(self.name)
        return True
Example #5
0
	def apply_edit_changes(self):

		"""Applies the controls. I.e. sets the variables from the controls."""

		if not qtplugin.apply_edit_changes(self, False) or self.lock:
			return False
		return True
Example #6
0
	def apply_edit_changes(self):

		"""Applies the controls. I.e. sets the variables from the controls."""

		if not qtplugin.apply_edit_changes(self, False) or self.lock:
			return False
		self.experiment.main_window.refresh(self.name)
		return True