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:
authorJoshua Leung <aligorith@gmail.com>2016-03-24 13:13:46 +0300
committerJoshua Leung <aligorith@gmail.com>2016-03-24 13:31:06 +0300
commit8e9a55f1e51daaadf92cd4f8236e3214b8db7c85 (patch)
treeccbbb982ae021cf8c7a9415a0a129bcce05e900c
parentf209529c3ddedf03199072c72dbcebfaa1ac52cc (diff)
Fix some typos and incorrect tooltips/descriptions
-rw-r--r--source/blender/editors/interface/interface_eyedropper.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/interface/interface_eyedropper.c b/source/blender/editors/interface/interface_eyedropper.c
index 54649f313f7..41a04698756 100644
--- a/source/blender/editors/interface/interface_eyedropper.c
+++ b/source/blender/editors/interface/interface_eyedropper.c
@@ -168,7 +168,7 @@ typedef struct Eyedropper {
float init_col[3]; /* for resetting on cancel */
- bool accum_start; /* has mouse been presed */
+ bool accum_start; /* has mouse been pressed */
float accum_col[3];
int accum_tot;
} Eyedropper;
@@ -423,7 +423,7 @@ void UI_OT_eyedropper_color(wmOperatorType *ot)
/* identifiers */
ot->name = "Eyedropper";
ot->idname = "UI_OT_eyedropper_color";
- ot->description = "Sample a data-block from the 3D view";
+ ot->description = "Sample a color from the Blender Window to store in a property";
/* api callbacks */
ot->invoke = eyedropper_invoke;