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>2010-01-03 05:34:00 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-01-03 05:34:00 +0300
commit6b9d65549b48392ea09bfba33648b810fc13f181 (patch)
treee2e2d61327b14cf5d09efc2555d8f8a6c2ab6704 /source/blender/editors/space_console
parent9bda43ed27479534ca15a2189b957f4068d1ba8a (diff)
bugfix [#20542] Crash 2.50a0 Click event in Console window Report mode
Diffstat (limited to 'source/blender/editors/space_console')
-rw-r--r--source/blender/editors/space_console/console_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_console/console_ops.c b/source/blender/editors/space_console/console_ops.c
index bf4edb5941c..76e1231b0d4 100644
--- a/source/blender/editors/space_console/console_ops.c
+++ b/source/blender/editors/space_console/console_ops.c
@@ -859,5 +859,5 @@ void CONSOLE_OT_select_set(wmOperatorType *ot)
ot->invoke= console_modal_select_invoke;
ot->modal= console_modal_select;
ot->cancel= console_modal_select_cancel;
- ot->poll= console_poll;
+ ot->poll= console_edit_poll;
}