From: Jim Evins Date: Tue, 6 Jul 2004 02:26:53 +0000 (+0000) Subject: 2004-07-05 Jim Evins X-Git-Tag: glabels-2_3_0~467 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=e2bb3e9baa9e37d525cd36408dcc5ef1c9008bcd;p=glabels 2004-07-05 Jim Evins * src/print.c: (print_crop_marks), (draw_outline): Changed crop marks and label outlines to black, instead of 25% gray. This addresses debian Bug #257460. git-svn-id: https://glabels.svn.sourceforge.net/svnroot/glabels/trunk@430 f5e0f49d-192f-0410-a22d-a8d8700d0965 --- diff --git a/glabels2/ChangeLog b/glabels2/ChangeLog index f64b0b9f..04e6cc06 100644 --- a/glabels2/ChangeLog +++ b/glabels2/ChangeLog @@ -1,3 +1,8 @@ +2004-07-05 Jim Evins + * src/print.c: (print_crop_marks), (draw_outline): + Changed crop marks and label outlines to black, instead of 25% gray. + This addresses debian Bug #257460. + 2004-07-05 Jim Evins * src/object-editor-fill-page.c: (gl_object_editor_set_fill_color): diff --git a/glabels2/src/print.c b/glabels2/src/print.c index 19429bee..a6bcf5ea 100644 --- a/glabels2/src/print.c +++ b/glabels2/src/print.c @@ -521,7 +521,7 @@ print_crop_marks (PrintInfo *pi) page_w = pi->page_width; page_h = pi->page_height; - gnome_print_setrgbcolor (pi->pc, 0.25, 0.25, 0.25); + gnome_print_setrgbcolor (pi->pc, 0.0, 0.0, 0.0); gnome_print_setopacity (pi->pc, 1.0); gnome_print_setlinewidth (pi->pc, 0.25); @@ -1112,7 +1112,7 @@ draw_outline (PrintInfo *pi, label_type = gl_template_get_first_label_type (pi->template); - gnome_print_setrgbcolor (pi->pc, 0.25, 0.25, 0.25); + gnome_print_setrgbcolor (pi->pc, 0.0, 0.0, 0.0); gnome_print_setopacity (pi->pc, 1.0); gnome_print_setlinewidth (pi->pc, 0.25);