From 795698e311a651f5a01ea8a3d3f9e0a3f9e974e6 Mon Sep 17 00:00:00 2001 From: Simon Budig Date: Mon, 10 Nov 2003 23:28:56 +0000 Subject: [PATCH] New vectors now are invisible by default. A quick poll on #gimp revealed 2003-11-11 Simon Budig * 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. --- ChangeLog | 7 +++++++ app/vectors/gimpvectors.c | 3 +++ 2 files changed, 10 insertions(+) diff --git a/ChangeLog b/ChangeLog index dffeedfcd5..ce6c5c7550 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2003-11-11 Simon Budig + + * 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 * app/widgets/gimpdataeditor.c: Fix warnings and one error in diff --git a/app/vectors/gimpvectors.c b/app/vectors/gimpvectors.c index cac836cbe3..94db0ceb5c 100644 --- a/app/vectors/gimpvectors.c +++ b/app/vectors/gimpvectors.c @@ -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; }