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>2008-04-13 23:42:39 +0400
committerCampbell Barton <ideasman42@gmail.com>2008-04-13 23:42:39 +0400
commitebae9b1a88ff70e1c6e29bb37e89a7188e5c172f (patch)
treee4eb2c7c02f8a59a7349e05199f996727629fbb0 /source/blender/src/space.c
parent4e40e6becce945930ed5aa6f6b7ee242b6b5e6b7 (diff)
UV Editing
* Changed default UV wire drawing do be a grey line with a black outline, highlighting aroudn selected points. * Moved some draw options out of the View menu into the View panel. * Changed header buttons to make Vert/Face modes less confusing.
Diffstat (limited to 'source/blender/src/space.c')
-rw-r--r--source/blender/src/space.c14
1 files changed, 2 insertions, 12 deletions
diff --git a/source/blender/src/space.c b/source/blender/src/space.c
index 94781693b68..546a171c458 100644
--- a/source/blender/src/space.c
+++ b/source/blender/src/space.c
@@ -5297,18 +5297,7 @@ static void winqreadimagespace(ScrArea *sa, void *spacedata, BWinEvent *evt)
borderselect_sima(UV_SELECT_ALL);
break;
case CKEY:
- if (G.sima->flag & SI_SYNC_UVSEL) {
- /* operate on the editmesh */
- if (G.qual==0) {
- if (G.scene->selectmode != SCE_SELECT_FACE) {
- G.sima->flag ^= SI_SELACTFACE;
- scrarea_queue_winredraw(curarea);
- }
- } else {
- error("Sync selection to Edit Mesh disables UV select options");
- }
- } else {
- /* normal operaton */
+ if ((G.sima->flag & SI_SYNC_UVSEL)==0) {
if(G.qual==LR_CTRLKEY) {
G.sima->sticky = SI_STICKY_VERTEX;
scrarea_do_headdraw(curarea);
@@ -5321,6 +5310,7 @@ static void winqreadimagespace(ScrArea *sa, void *spacedata, BWinEvent *evt)
} else {
G.sima->flag ^= SI_SELACTFACE;
scrarea_queue_winredraw(curarea);
+ scrarea_queue_headredraw(curarea); /* for the header face buttons */
}
}
break;