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:
authorBastien Montagne <montagne29@wanadoo.fr>2014-01-12 18:56:47 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2014-01-12 18:59:04 +0400
commit190809d8abcd9780a69d8bb001dcf342111ee350 (patch)
tree4e5d5260434472d07f8068e9efb161d147e35e49 /source/blender/editors/interface
parentd6c022d6d7398890b6ce9e3f20a5802418f11e22 (diff)
UIList tweak: make active item visible when it changes somehow (useful e.g. when weight-paintings a rigged mesh).
Diffstat (limited to 'source/blender/editors/interface')
-rw-r--r--source/blender/editors/interface/interface_templates.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/blender/editors/interface/interface_templates.c b/source/blender/editors/interface/interface_templates.c
index c7de757e2c9..e94fc2ddbab 100644
--- a/source/blender/editors/interface/interface_templates.c
+++ b/source/blender/editors/interface/interface_templates.c
@@ -2816,6 +2816,12 @@ void uiTemplateList(uiLayout *layout, bContext *C, const char *listtype_name, co
}
dyn_data->items_len = dyn_data->items_shown = -1;
+ /* When active item changed since last draw, scroll to it. */
+ if (activei != ui_list->list_last_activei) {
+ ui_list->flag |= UILST_SCROLL_TO_ACTIVE_ITEM;
+ ui_list->list_last_activei = activei;
+ }
+
/* Filter list items! (not for compact layout, though) */
if (dataptr->data && prop) {
int filter_exclude = ui_list->filter_flag & UILST_FLT_EXCLUDE;