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
path: root/source
diff options
context:
space:
mode:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2010-07-26 02:49:40 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2010-07-26 02:49:40 +0400
commit2ef33845046b978b9a86c1ec90184af96d5bb943 (patch)
tree8fa1e61c8dcdebf8878d6e9be22c2507e0fe676b /source
parent29fac1b7dab9f0af3dea8bb44e81c716da8691bd (diff)
Changed the default line color of a line style from white to black.
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenkernel/intern/linestyle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/linestyle.c b/source/blender/blenkernel/intern/linestyle.c
index 1bdd735d1bd..e97b4a5be92 100644
--- a/source/blender/blenkernel/intern/linestyle.c
+++ b/source/blender/blenkernel/intern/linestyle.c
@@ -53,7 +53,7 @@ static char *modifier_name[LS_MODIFIER_NUM] = {
static void default_linestyle_settings(FreestyleLineStyle *linestyle)
{
linestyle->panel = LS_PANEL_COLOR;
- linestyle->r = linestyle->g = linestyle->b = 1.0;
+ linestyle->r = linestyle->g = linestyle->b = 0.0;
linestyle->alpha = 1.0;
linestyle->thickness = 1.0;