mirror of https://github.com/GNOME/gimp.git
New vectors now are invisible by default. A quick poll on #gimp revealed
2003-11-11 Simon Budig <simon@gimp.org> * app/vectors/gimpvectors.c: New vectors now are invisible by default. A quick poll on #gimp revealed that this is more useful. Also loading images with compatibility paths works more as expected.
This commit is contained in:
parent
8f0bcfaadc
commit
795698e311
|
@ -1,3 +1,10 @@
|
|||
2003-11-11 Simon Budig <simon@gimp.org>
|
||||
|
||||
* app/vectors/gimpvectors.c: New vectors now are invisible by
|
||||
default. A quick poll on #gimp revealed that this is more
|
||||
useful. Also loading images with compatibility paths works
|
||||
more as expected.
|
||||
|
||||
2003-11-10 Dave Neary <bolsh@gimp.org>
|
||||
|
||||
* app/widgets/gimpdataeditor.c: Fix warnings and one error in
|
||||
|
|
|
@ -243,6 +243,9 @@ gimp_vectors_class_init (GimpVectorsClass *klass)
|
|||
static void
|
||||
gimp_vectors_init (GimpVectors *vectors)
|
||||
{
|
||||
GimpItem *item = GIMP_ITEM (vectors);
|
||||
|
||||
item->visible = FALSE;
|
||||
vectors->strokes = NULL;
|
||||
vectors->freeze_count = 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue