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:
authorTon Roosendaal <ton@blender.org>2008-11-27 17:27:33 +0300
committerTon Roosendaal <ton@blender.org>2008-11-27 17:27:33 +0300
commit6b5c948457b3627ffd69c0a2f6aaa8105642eb75 (patch)
tree935594aaf45bed410e011740b6185cb18a383fee /source/blender/blenloader
parentaf30c87dee5895642b07a0cd25a9295006d46ead (diff)
Blender 2.5 bugfix! :)
- keymaps in windowmanager (temporary) have to set to NULL on load.
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/readfile.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index ed53c31dd67..53fd1bfa373 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -3787,6 +3787,8 @@ static void direct_link_windowmanager(FileData *fd, wmWindowManager *wm)
wm->operators.first= wm->operators.last= NULL;
wm->windowkeymap.first= wm->windowkeymap.last= NULL;
wm->screenkeymap.first= wm->screenkeymap.last= NULL;
+ wm->uikeymap.first= wm->uikeymap.last= NULL;
+ wm->timekeymap.first= wm->timekeymap.last= NULL;
wm->queue.first= wm->queue.last= NULL;
wm->reports.first= wm->reports.last= NULL;