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-11-05 20:32:06 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-11-05 20:32:06 +0300
commit8109b13e8369418f81ffa4f362f40d4d2f783851 (patch)
tree42d741f98110ea3564fd28e774756faf60b05602 /source/blender/windowmanager/wm.h
parentaec5fb98041a369d30c4f3c07981169a2e12a5ae (diff)
- converted circle select use a modal map
- now works exactly like 2.4x, except that its accessed from the CKey - hack to remember circle size, need some better way to do this
Diffstat (limited to 'source/blender/windowmanager/wm.h')
-rw-r--r--source/blender/windowmanager/wm.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/blender/windowmanager/wm.h b/source/blender/windowmanager/wm.h
index 609b6142640..c476b7efa1e 100644
--- a/source/blender/windowmanager/wm.h
+++ b/source/blender/windowmanager/wm.h
@@ -76,5 +76,12 @@ void wm_autosave_delete(void);
void wm_autosave_read(bContext *C, struct ReportList *reports);
void wm_autosave_location(char *filename);
+/* hack to store circle select size - campbell, must replace with nice operator memory */
+#define GESTURE_MEMORY
+
+#ifdef GESTURE_MEMORY
+extern int circle_select_size;
+#endif
+
#endif /* WM_H */