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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2007-09-17 22:24:53 +0400
committerCampbell Barton <ideasman42@gmail.com>2007-09-17 22:24:53 +0400
commitb32e5f7cb451b238d5ce62c97fa9431d4befd11b (patch)
treeb9366da5d551b6f3a4cab1be47a2e7e90dc79bc1 /source
parent0c7c57685ec20717f4d5860bc774b52913742e8d (diff)
small text cleanup
Diffstat (limited to 'source')
-rw-r--r--source/blender/src/editsima.c6
-rw-r--r--source/blender/src/header_image.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/src/editsima.c b/source/blender/src/editsima.c
index 41f2e56c06f..a9d376dfbcd 100644
--- a/source/blender/src/editsima.c
+++ b/source/blender/src/editsima.c
@@ -1070,7 +1070,7 @@ void stitch_uv_tface(int mode)
if(is_uv_tface_editing_allowed()==0)
return;
if(G.sima->flag & SI_SYNC_UVSEL) {
- error("Can't stitch when Mesh Sync selection is enabled");
+ error("Can't stitch when Sync Mesh Selection is enabled");
return;
}
@@ -1195,7 +1195,7 @@ void select_linked_tface_uv(int mode) /* TODO */
return;
if(G.sima->flag & SI_SYNC_UVSEL) {
- error("Can't stitch when Mesh Sync selection is enabled");
+ error("Can't select linked when Sync Mesh Selection is enabled");
return;
}
@@ -1336,7 +1336,7 @@ void unlink_selection(void)
if( is_uv_tface_editing_allowed()==0 ) return;
if(G.sima->flag & SI_SYNC_UVSEL) {
- error("Can't stitch when Mesh Sync selection is enabled");
+ error("Can't select unlinked when Sync Mesh Selection is enabled");
return;
}
diff --git a/source/blender/src/header_image.c b/source/blender/src/header_image.c
index 2b2f194b556..dc40b17f3fc 100644
--- a/source/blender/src/header_image.c
+++ b/source/blender/src/header_image.c
@@ -1188,7 +1188,7 @@ void image_buttons(void)
xco+=10;
uiDefIconTextButS(block, ICONTEXTROW,B_AROUND, ICON_ROTATE, around_pup(), xco,0,XIC+10,YIC, &(G.v2d->around), 0, 3.0, 0, 0, "Rotation/Scaling Pivot (Hotkeys: Comma, Shift Comma, Period) ");
xco+= XIC + 12;
- uiDefIconButBitI(block, TOG, SI_SYNC_UVSEL, B_REDR, ICON_MESH_HLT, xco,0,XIC,YIC, &G.sima->flag, 0, 0, 0, 0, "Sync from mesh selection");
+ uiDefIconButBitI(block, TOG, SI_SYNC_UVSEL, B_REDR, ICON_MESH_HLT, xco,0,XIC,YIC, &G.sima->flag, 0, 0, 0, 0, "Sync Mesh Selection");
xco+= XIC+16;
}