changed labels of actions

This commit is contained in:
iLLiCiTiT 2020-09-11 19:27:01 +02:00
parent 3351264c7c
commit 93c391a9d4
2 changed files with 2 additions and 3 deletions

View file

@ -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

View file

@ -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)