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>2009-07-25 03:07:18 +0400
committerCampbell Barton <ideasman42@gmail.com>2009-07-25 03:07:18 +0400
commitf7b90c0f419633e33c4a81969b9e6228cf896b24 (patch)
tree2a08835e371251e2393beb7e016cef76dc99b09a /release
parenta93619a8c44d432e93a29f01b65505adee77474a (diff)
- report header buttons were not drawing.
- shift+b in the console would do border zoom (rather then upper case B), fixed by making v2d's border zoom check if the v2d's zoom is locked. - blender in debug mode registers all operators, useful for testing.
Diffstat (limited to 'release')
-rw-r--r--release/ui/space_console.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/ui/space_console.py b/release/ui/space_console.py
index 38358e914a7..08695569748 100644
--- a/release/ui/space_console.py
+++ b/release/ui/space_console.py
@@ -18,7 +18,7 @@ class CONSOLE_HT_header(bpy.types.Header):
row = layout.row()
row.itemR(sc, "console_type", expand=True)
- if sc.type == 'REPORT':
+ if sc.console_type == 'REPORT':
if context.area.show_menus:
row = layout.row()