mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
changed labels of actions
This commit is contained in:
parent
3351264c7c
commit
93c391a9d4
2 changed files with 2 additions and 3 deletions
|
|
@ -488,7 +488,6 @@ class RootsWidget(QtWidgets.QWidget, ConfigObject):
|
|||
|
||||
def _from_multi_to_single(self):
|
||||
mutli_value = self.multiroot_widget.item_value()
|
||||
first_key = None
|
||||
for value in mutli_value.values():
|
||||
single_value = value
|
||||
break
|
||||
|
|
|
|||
|
|
@ -201,7 +201,7 @@ class ConfigObject(AbstractConfigObject):
|
|||
and not self.is_overriden
|
||||
and not self.any_parent_is_group
|
||||
):
|
||||
action = QtWidgets.QAction("Set as overriden")
|
||||
action = QtWidgets.QAction("Set project override")
|
||||
actions_mapping[action] = self._set_as_overriden
|
||||
menu.addAction(action)
|
||||
|
||||
|
|
@ -210,7 +210,7 @@ class ConfigObject(AbstractConfigObject):
|
|||
and (self.is_overriden or self.child_overriden)
|
||||
):
|
||||
# TODO better label
|
||||
action = QtWidgets.QAction("Remove override")
|
||||
action = QtWidgets.QAction("Remove project override")
|
||||
actions_mapping[action] = self._remove_overrides
|
||||
menu.addAction(action)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue