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:
authorTon Roosendaal <ton@blender.org>2004-10-28 20:22:42 +0400
committerTon Roosendaal <ton@blender.org>2004-10-28 20:22:42 +0400
commit9ac0d58d0e2ba61953778392fa94533d3b63a86e (patch)
treec42686d6f060ed07397f8053cb509a89a6a7b081 /source/blender/src/editoops.c
parent9326a6cf51c7b428af286b57671141d50e0ae65a (diff)
Changed order in evaluation for common_instertkey menu, to enable posemode
key insterting working on unselected armature.
Diffstat (limited to 'source/blender/src/editoops.c')
-rw-r--r--source/blender/src/editoops.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/source/blender/src/editoops.c b/source/blender/src/editoops.c
index 30a01e676d9..d306236d319 100644
--- a/source/blender/src/editoops.c
+++ b/source/blender/src/editoops.c
@@ -149,7 +149,7 @@ void swap_select_all_oops(void)
oops_to_select_objects(); /* also redraw */
- G.soops->lockpoin= 0;
+ G.soops->lockpoin= NULL;
}
/* never used... check CVS 1.12 for the code */
@@ -168,7 +168,7 @@ static void deselect_all_oops(void)
}
oops= oops->next;
}
- G.soops->lockpoin= 0;
+ G.soops->lockpoin= NULL;
}
void set_select_flag_oops(void) /* all areas */
@@ -184,7 +184,7 @@ void set_select_flag_oops(void) /* all areas */
}
sa= sa->next;
}
- if(G.soops) G.soops->lockpoin= 0;
+ if(G.soops) G.soops->lockpoin= NULL;
}
void deselect_all_area_oops(void) /* all areas */
@@ -207,7 +207,7 @@ void deselect_all_area_oops(void) /* all areas */
sa= sa->next;
}
- if(G.soops) G.soops->lockpoin= 0;
+ if(G.soops) G.soops->lockpoin= NULL;
}
void transform_oops(int mode)
@@ -412,6 +412,7 @@ static void do_activate_oops(Oops *oops)
if(base) {
set_active_base(base); /* editview.c */
allqueue(REDRAWVIEW3D, 0);
+ allqueue(REDRAWOOPS, 0);
allqueue(REDRAWINFO, 1);
}
break;