Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-09-17 11:18:50 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-09-17 11:18:50 +0300
commit11b0c2080cc19d4f0f35be8eb8845f6ce44243cb (patch)
tree8072b49945c8604cbee2ad50b63caba586a72849 /release/scripts/startup/bl_operators
parentaca58ae970de5e581554cf57476befdbf2c89012 (diff)
UI: use unique name for install add-on operator
Was called "Install", which isn't useful in operator search.
Diffstat (limited to 'release/scripts/startup/bl_operators')
-rw-r--r--release/scripts/startup/bl_operators/userpref.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_operators/userpref.py b/release/scripts/startup/bl_operators/userpref.py
index 6311bcade7a..b052f333d2a 100644
--- a/release/scripts/startup/bl_operators/userpref.py
+++ b/release/scripts/startup/bl_operators/userpref.py
@@ -537,7 +537,7 @@ class PREFERENCES_OT_addon_refresh(Operator):
class PREFERENCES_OT_addon_install(Operator):
"""Install an add-on"""
bl_idname = "preferences.addon_install"
- bl_label = "Install"
+ bl_label = "Install Add-on"
overwrite: BoolProperty(
name="Overwrite",