Nobody knows if this is a GDK bug or a feature, but all lines with

line_width > 0 seem to have a drawing bug, while line_width == 0 seems to
do The Right Thing(TM).
This commit is contained in:
Sven Neumann 1999-05-30 03:08:24 +00:00
parent 964afcc352
commit 49c604f33c
2 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,13 @@
1999-05-30 Jens Lauterbacher <jens@tellux.de>
Simon Budig <Simon.Budig@unix-ag.org>
Michael Natterer <mitschel@cs.tu-berlin.de>
Adam D. Moss <adam@gimp.org>
Sven Riedel <sr@gimp.org>
Sven Neumann <sven@gimp.org>
* app/draw_core.c (draw_core_new): 1/6 bit/person -- figure that
one out yourself!
Sat May 29 13:43:14 PDT 1999 Manish Singh <yosh@gimp.org>
* tools/pdbgen/Makefile.am: $srcdir != $builddir fix

View File

@ -33,7 +33,7 @@ draw_core_new (draw_func)
core->gc = NULL;
core->paused_count = 0;
core->data = NULL;
core->line_width = 1;
core->line_width = 0;
core->line_style = GDK_LINE_SOLID;
core->cap_style = GDK_CAP_NOT_LAST;
core->join_style = GDK_JOIN_MITER;