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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2009-08-11 00:57:12 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2009-08-11 00:57:12 +0400
commit8dd523a154d1adfa28453c1fab00e7fd8e7e502d (patch)
tree577caa06034e6f625b043c1770da0a3306702656 /release
parent24b7d90e952a3f7f20729e9fa765b39ae09ccd8a (diff)
2.5: Fixes
* Disable shaded mode for now, it cause too many crashes combined with preview render, will be fixed properly later. * Make 3d view toolbar region a bit wider. Ideally this would not be needed, but the sculpt/paint buttons just don't fit otherwise. * Revert change to icon/text spacing in buttons, it breaks text editing and clipping. Will properly fix this later so changing the spacing can be done centrally. * Fix for grease pencil simplify stroke python error. Now button is hidden (as in 2.4), but still available through outliner. * Fix for memory leak in UI code, when using ctrl+Q menu. * Fix submenu > icon being drawn on some buttons where it was not needed.
Diffstat (limited to 'release')
-rw-r--r--release/ui/space_info.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/ui/space_info.py b/release/ui/space_info.py
index 686600ba4e7..9c08a0fe3d2 100644
--- a/release/ui/space_info.py
+++ b/release/ui/space_info.py
@@ -335,7 +335,7 @@ class INFO_PT_edit(bpy.types.Panel):
colsplitcol.itemR(edit, "grease_pencil_manhattan_distance", text="Manhattan Distance")
colsplitcol.itemR(edit, "grease_pencil_euclidean_distance", text="Euclidean Distance")
colsplitcol.itemR(edit, "grease_pencil_smooth_stroke", text="Smooth Stroke")
- colsplitcol.itemR(edit, "grease_pencil_simplify_stroke", text="Simplify Stroke")
+ # colsplitcol.itemR(edit, "grease_pencil_simplify_stroke", text="Simplify Stroke")
colsplitcol.itemR(edit, "grease_pencil_eraser_radius", text="Eraser Radius")