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:
authorBen Batt <benbatt@gmail.com>2007-01-31 14:24:13 +0300
committerBen Batt <benbatt@gmail.com>2007-01-31 14:24:13 +0300
commit1e8e779e6a95e5c7aa9ff28c7feff9b0a5c1bd05 (patch)
tree8359e6c79f3ab8be23d133faa3342a4b2e5c5c27 /source/blender/include/BIF_mainqueue.h
parent9eb240282b2ad3e666b7c346d55cae25a9798bdf (diff)
Bugfix for #5603 - event que 'stuck' when holding down shift modifier
when sculpting This bug was caused by the main event queue overflowing. This commit fixes the bug by increasing the size of the main event queue from 256 events to 4096 events.
Diffstat (limited to 'source/blender/include/BIF_mainqueue.h')
-rw-r--r--source/blender/include/BIF_mainqueue.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/include/BIF_mainqueue.h b/source/blender/include/BIF_mainqueue.h
index 48df45bf3bf..e2eaeea4dca 100644
--- a/source/blender/include/BIF_mainqueue.h
+++ b/source/blender/include/BIF_mainqueue.h
@@ -35,7 +35,7 @@
#ifndef BIF_MAINQUEUE_H
#define BIF_MAINQUEUE_H
-#define MAXQUEUE 256
+#define MAXQUEUE 4096
unsigned short mainqtest (void);
unsigned short mainqread (short *val, char *ascii);