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>2009-02-04 14:47:05 +0300
committerJoshua Leung <aligorith@gmail.com>2009-02-04 14:47:05 +0300
commit0341e762b28f732dd2913ebec48405f7718a4617 (patch)
treec9d2693a22bb98d154627a1bd33e7e3b78cbcfb5 /source/blender/editors/space_outliner
parent00c9745720c354c8a0732bb223e044bbfb13958b (diff)
Assorted fixes:
* Added examples of how to patch up MTex adrcodes for Animato. It appears many of the settings there in RNA are still undefined though! * Added undo push for the Outliner tweaks I made * Removed some outdated comment
Diffstat (limited to 'source/blender/editors/space_outliner')
-rw-r--r--source/blender/editors/space_outliner/outliner.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/editors/space_outliner/outliner.c b/source/blender/editors/space_outliner/outliner.c
index e62eeb42215..ef5b59e905b 100644
--- a/source/blender/editors/space_outliner/outliner.c
+++ b/source/blender/editors/space_outliner/outliner.c
@@ -2259,6 +2259,11 @@ static int outliner_activate_click(bContext *C, wmOperator *op, wmEvent *event)
/* select relevant row */
outliner_select(soops, &soops->tree, &row, &selecting);
+
+ // XXX old flag found in old code, do we still use this?
+ //soops->storeflag |= SO_TREESTORE_REDRAW;
+
+ BIF_undo_push("Outliner selection event");
}
ED_region_tag_redraw(ar);