Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 2 additions & 7 deletions display/d.vect/area.c
Original file line number Diff line number Diff line change
Expand Up @@ -220,13 +220,8 @@ int display_area(struct Map_info *Map, struct cat_list *Clist,

/* boundary */
if (bcolor) {
if (custom_rgb) {
D_RGB_color((unsigned char)red, (unsigned char)grn,
(unsigned char)blu);
}
else {
D_RGB_color(bcolor->r, bcolor->g, bcolor->b);
}
/* Use the boundary color regardless of color table, RGB col... */
D_RGB_color(bcolor->r, bcolor->g, bcolor->b);
/* use different user defined render methods */
D_polyline_abs(APoints->x, APoints->y, APoints->n_points);
for (i = 0; i < n_isles; i++) {
Expand Down
Loading