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:
authorJulian Eisel <eiseljulian@gmail.com>2018-10-30 01:28:08 +0300
committerJulian Eisel <eiseljulian@gmail.com>2018-10-30 01:29:26 +0300
commit70582cf8d26e4ba5d6ccb0d1044d16e239fa655e (patch)
tree6a0c2ab6548286a6cca99ab0f64e22c859852bfe /source/blender/editors/screen/screen_ops.c
parenta0d40c6a8c42c774d9286b5de0d80167c1d55fde (diff)
UI: Support using Ctrl+Scrollwheel to cycle properties editor tabs
Small side effect is that area operators (toggle fullscreen/maximized, duplicate area) are now displayed in RMB-menu. Makes sense anyway.
Diffstat (limited to 'source/blender/editors/screen/screen_ops.c')
-rw-r--r--source/blender/editors/screen/screen_ops.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/source/blender/editors/screen/screen_ops.c b/source/blender/editors/screen/screen_ops.c
index 3d32f10582d..7a447bb41d4 100644
--- a/source/blender/editors/screen/screen_ops.c
+++ b/source/blender/editors/screen/screen_ops.c
@@ -4614,12 +4614,6 @@ static void SCREEN_OT_region_blend(wmOperatorType *ot)
/** \name Space Context Cycle Operator
* \{ */
-/* SCREEN_OT_space_context_cycle direction */
-enum {
- SPACE_CONTEXT_CYCLE_PREV,
- SPACE_CONTEXT_CYCLE_NEXT,
-};
-
static const EnumPropertyItem space_context_cycle_direction[] = {
{SPACE_CONTEXT_CYCLE_PREV, "PREV", 0, "Previous", ""},
{SPACE_CONTEXT_CYCLE_NEXT, "NEXT", 0, "Next", ""},