[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
gEDA-cvs: gaf.git: branch: stable-1.8 updated (1.7.2-20111231-85-gbc18e31)
The branch, stable-1.8 has been updated
via bc18e318ca1314586fc8626fcb8bd1937c69c10d (commit)
from ea3a3214312203f886c10faa5a28ade7c5e9d4f6 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
=========
Summary
=========
libgeda/src/o_picture.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
=================
Commit Messages
=================
commit bc18e318ca1314586fc8626fcb8bd1937c69c10d
Author: Vladimir Zhbanov <vzhbanov@xxxxxxxxx>
Commit: Peter TB Brett <peter@xxxxxxxxxxxxx>
libgeda: Fix incorrect Postscript output for missing pictures
Closes-bug: lp-923257
:100644 100644 b9c8899... 7c4e3d5... M libgeda/src/o_picture.c
=========
Changes
=========
commit bc18e318ca1314586fc8626fcb8bd1937c69c10d
Author: Vladimir Zhbanov <vzhbanov@xxxxxxxxx>
Commit: Peter TB Brett <peter@xxxxxxxxxxxxx>
libgeda: Fix incorrect Postscript output for missing pictures
Closes-bug: lp-923257
diff --git a/libgeda/src/o_picture.c b/libgeda/src/o_picture.c
index b9c8899..7c4e3d5 100644
--- a/libgeda/src/o_picture.c
+++ b/libgeda/src/o_picture.c
@@ -882,9 +882,9 @@ void o_picture_print(TOPLEVEL *toplevel, FILE *fp, OBJECT *o_current,
int line_width = (toplevel->line_style == THICK) ? LINE_WIDTH : 2;
o_box_print_solid (toplevel, fp, x1, y1, width, height,
DEFAULT_COLOR, line_width, -1, -1, -1, -1);
- o_line_print_solid (toplevel, fp, x1, y1, x1+width, y1+height,
+ o_line_print_solid (toplevel, fp, x1, y1, x1+width, y1-height,
DEFAULT_COLOR, line_width, -1, -1, -1, -1);
- o_line_print_solid (toplevel, fp, x1+width, y1, x1, y1+height,
+ o_line_print_solid (toplevel, fp, x1+width, y1, x1, y1-height,
DEFAULT_COLOR, line_width, -1, -1, -1, -1);
return;
}
_______________________________________________
geda-cvs mailing list
geda-cvs@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-cvs