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:
authorJoshua Leung <aligorith@gmail.com>2011-06-01 15:55:28 +0400
committerJoshua Leung <aligorith@gmail.com>2011-06-01 15:55:28 +0400
commitdd43faa85555f1c9504eca4bf46201d1b6e0a253 (patch)
tree6c3006c69c66f5d76bda8730cff2f9185b8a1987 /source/blender/editors
parent39bbf3854a5c91e3d8e410d01b34d4e88df20879 (diff)
* Fix compiler warning from previous commit
* For new themes, size of handles in graph editor is now 4. Allows them to be seen better. (TODO: .b.blend needs updating)
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/include/ED_markers.h1
-rw-r--r--source/blender/editors/interface/resources.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/include/ED_markers.h b/source/blender/editors/include/ED_markers.h
index 8476e67acd5..a8e91add348 100644
--- a/source/blender/editors/include/ED_markers.h
+++ b/source/blender/editors/include/ED_markers.h
@@ -34,6 +34,7 @@
#define ED_MARKERS_H
struct wmKeyConfig;
+struct wmKeyMap;
struct bContext;
struct bAnimContext;
struct Scene;
diff --git a/source/blender/editors/interface/resources.c b/source/blender/editors/interface/resources.c
index 1a2a2906f1a..3564dad474a 100644
--- a/source/blender/editors/interface/resources.c
+++ b/source/blender/editors/interface/resources.c
@@ -663,7 +663,7 @@ void ui_theme_init_default(void)
SETCOL(btheme->tipo.handle_vertex, 0, 0, 0, 255);
SETCOL(btheme->tipo.handle_vertex_select, 255, 133, 0, 255);
- btheme->tipo.handle_vertex_size= 3;
+ btheme->tipo.handle_vertex_size= 4;
SETCOL(btheme->tipo.ds_channel, 82, 96, 110, 255);
SETCOL(btheme->tipo.ds_subchannel, 124, 137, 150, 255);