diff options
author | Thomas White <taw@bitwiz.me.uk> | 2018-06-26 23:56:57 +0200 |
---|---|---|
committer | Thomas White <taw@bitwiz.me.uk> | 2018-06-26 23:56:57 +0200 |
commit | 2603d5e2933e033097e60b71c52623870ec1eef3 (patch) | |
tree | 418352617afee752fbeaf4186297dde9b5f74908 | |
parent | c339bed806672f477fc27b58c67720ef61a11a75 (diff) |
Make default background colour white
-rw-r--r-- | src/sc_interp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/sc_interp.c b/src/sc_interp.c index 33a9d19..3b7d913 100644 --- a/src/sc_interp.c +++ b/src/sc_interp.c @@ -689,12 +689,12 @@ SCInterpreter *sc_interp_new(PangoContext *pc, PangoLanguage *lang, st->col[3] = 1.0; st->alignment = PANGO_ALIGN_LEFT; st->bgcol[0] = 1.0; - st->bgcol[1] = 0.0; - st->bgcol[2] = 0.0; + st->bgcol[1] = 1.0; + st->bgcol[2] = 1.0; st->bgcol[3] = 1.0; st->bgcol2[0] = 1.0; - st->bgcol2[1] = 0.0; - st->bgcol2[2] = 0.0; + st->bgcol2[1] = 1.0; + st->bgcol2[2] = 1.0; st->bgcol2[3] = 1.0; st->bggrad = GRAD_NONE; scin->lang = lang; |