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>2008-01-03 17:53:44 +0300
committerCampbell Barton <ideasman42@gmail.com>2008-01-03 17:53:44 +0300
commit86471f8b72d2a6ac8f6078b92f701da1eeab2525 (patch)
treeec023f4f7c9fbcd3a5c1809210f8a713934bfea7 /source/blender/src/editscreen.c
parent0e716733bceda96d298540cadf2ed18169d9cb52 (diff)
Split guardedalloc print into 2 funcs, 1 that prints on errors, another then prints the memory blocks as a python dict, minor changes to help text
Diffstat (limited to 'source/blender/src/editscreen.c')
-rw-r--r--source/blender/src/editscreen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/editscreen.c b/source/blender/src/editscreen.c
index 43d163bff09..2d6cc99b1ce 100644
--- a/source/blender/src/editscreen.c
+++ b/source/blender/src/editscreen.c
@@ -1399,7 +1399,7 @@ void screenmain(void)
else if (event==QKEY) {
/* Temp place to print mem debugging info ctrl+alt+shift + qkey */
if ( G.qual == (LR_SHIFTKEY | LR_ALTKEY | LR_CTRLKEY) ) {
- MEM_printmemlist();
+ MEM_printmemlist_pydict();
}
else if((G.obedit && G.obedit->type==OB_FONT && g_activearea->spacetype==SPACE_VIEW3D)||g_activearea->spacetype==SPACE_TEXT||g_activearea->spacetype==SPACE_SCRIPT);