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:
authorPablo Vazquez <venomgfx@gmail.com>2018-11-02 03:19:34 +0300
committerPablo Vazquez <venomgfx@gmail.com>2018-11-02 03:19:34 +0300
commit2d6a10615d823d2537eed5a91d3bc24df9aa2106 (patch)
tree3031193cb3ca4ecbfec7d9638d139f3e431c0abd /source/blender/windowmanager/intern/wm_files.c
parent2959e4c72c1c021fca53887ab902a98789b98f42 (diff)
UI: Typo
Diffstat (limited to 'source/blender/windowmanager/intern/wm_files.c')
-rw-r--r--source/blender/windowmanager/intern/wm_files.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/windowmanager/intern/wm_files.c b/source/blender/windowmanager/intern/wm_files.c
index 6212b096f3d..32eeb54592b 100644
--- a/source/blender/windowmanager/intern/wm_files.c
+++ b/source/blender/windowmanager/intern/wm_files.c
@@ -2380,7 +2380,7 @@ static uiBlock *block_create_autorun_warning(struct bContext *C, struct ARegion
/* Allow reload if we have a saved file. */
if (G.relbase_valid) {
but = uiDefIconTextBut(
- block, UI_BTYPE_BUT, 0, ICON_NONE, IFACE_("Allow Executon"), 0, 0, 50, UI_UNIT_Y,
+ block, UI_BTYPE_BUT, 0, ICON_NONE, IFACE_("Allow Execution"), 0, 0, 50, UI_UNIT_Y,
NULL, 0, 0, 0, 0, TIP_("Reload file with execution of Python scripts enabled"));
UI_but_func_set(but, wm_block_autorun_warning_allow, block, NULL);
}